aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Wright <kevin.wright@bradyplc.com>2018-02-01 09:49:03 +0000
committerKevin Wright <kevin.wright@bradyplc.com>2018-02-01 09:49:03 +0000
commitbd1ca071286987bc148fda830aa3141f56891efb (patch)
treebf414d07bd40695457620a1b6280f8f21be909cc
parenta346b10556f8958834c14588e3443d3922d66f89 (diff)
downloadmagnolia-bd1ca071286987bc148fda830aa3141f56891efb.tar.gz
magnolia-bd1ca071286987bc148fda830aa3141f56891efb.tar.bz2
magnolia-bd1ca071286987bc148fda830aa3141f56891efb.zip
Removing a pair of jaxb dependencies that weren't actually needed
-rw-r--r--build.sbt6
1 files changed, 2 insertions, 4 deletions
diff --git a/build.sbt b/build.sbt
index 035b32b..487c103 100644
--- a/build.sbt
+++ b/build.sbt
@@ -31,12 +31,10 @@ lazy val tests = project
libraryDependencies ++= Seq(
"com.fommil" %% "deriving-macro" % "0.9.0",
"com.fommil" %% "scalaz-deriving" % "0.9.0",
- // These 4 to allow compilation under Java 9...
+ // These two to allow compilation under Java 9...
// Specifically to import XML stuff that got modularised
"javax.xml.bind" % "jaxb-api" % "2.3.0" % "compile",
- "com.sun.xml.bind" % "jaxb-impl" % "2.3.0" % "compile",
- "org.glassfish.jaxb" % "jaxb-runtime" % "2.3.0" % "compile",
- "javax.activation" % "activation" % "1.1.1" % "compile"
+ "com.sun.xml.bind" % "jaxb-impl" % "2.3.0" % "compile"
)
)
.dependsOn(examplesJVM)