[Java 2.5] SBT-assembly deduplicate error

244 views
Skip to first unread message

Johan Dahlberg

unread,
Sep 16, 2016, 5:22:36 AM9/16/16
to Play Framework
I've been trying to use SBT-assembly with a new project but can't get it to work.

I followed that it says in the play documentation but removed "import AssemblyKeys._" because it says that it's already imported (auto plugin) and "assemblySettings" that it says doesn't exist.

build.sbt
name := "test-project"

version := "1.0-SNAPSHOT"

lazy val root = (project in file(".")).enablePlugins(PlayJava)

scalaVersion := "2.11.8"

libraryDependencies ++= Seq(
  javaCore,
  javaJdbc,
  javaJpa.exclude("org.hibernate.javax.persistence", "hibernate-jpa-2.0-api"),
  javaWs,
  "com.newrelic.agent.java" % "newrelic-api" % "3.25.0",
  "com.typesafe.play.modules" %% "play-modules-redis" % "2.4.1",
  "mysql" % "mysql-connector-java" % "5.1.38",
  "org.hibernate" % "hibernate-entitymanager" % "5.1.0.Final",
  "org.hibernate" % "hibernate-java8" % "5.1.0.Final",
  "org.hibernate.javax.persistence" % "hibernate-jpa-2.1-api" % "1.0.0.Final",
  "org.javatuples" % "javatuples" % "1.2"
)

mainClass in assembly := Some("play.core.server.ProdServerStart")

fullClasspath in assembly += Attributed.blank(PlayKeys.playPackageAssets.value)

error:
[warn] Merging 'META-INF/spring.tooling' with strategy 'filterDistinctLines'
[warn] Merging 'reference.conf' with strategy 'concat'
[error] 25 errors were encountered during merge
java.lang.RuntimeException: deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/io.netty/netty-handler/jars/netty-handler-4.0.39.Final.jar:META-INF/io.netty.versions.properties
/home/johdah/.ivy2/cache/io.netty/netty-buffer/jars/netty-buffer-4.0.39.Final.jar:META-INF/io.netty.versions.properties
/home/johdah/.ivy2/cache/io.netty/netty-common/jars/netty-common-4.0.39.Final.jar:META-INF/io.netty.versions.properties
/home/johdah/.ivy2/cache/io.netty/netty-transport/jars/netty-transport-4.0.39.Final.jar:META-INF/io.netty.versions.properties
/home/johdah/.ivy2/cache/io.netty/netty-codec/jars/netty-codec-4.0.39.Final.jar:META-INF/io.netty.versions.properties
/home/johdah/.ivy2/cache/io.netty/netty-codec-http/jars/netty-codec-http-4.0.39.Final.jar:META-INF/io.netty.versions.properties
/home/johdah/.ivy2/cache/io.netty/netty-transport-native-epoll/jars/netty-transport-native-epoll-4.0.39.Final-linux-x86_64.jar:META-INF/io.netty.versions.properties
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/HeuristicCommitException.class
/home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/HeuristicCommitException.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/HeuristicMixedException.class
/home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/HeuristicMixedException.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/HeuristicRollbackException.class
/home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/HeuristicRollbackException.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/InvalidTransactionException.class
/home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/InvalidTransactionException.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/NotSupportedException.class
/home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/NotSupportedException.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/RollbackException.class
/home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/RollbackException.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/Status.class
/home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/Status.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/Synchronization.class
/home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/Synchronization.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/SystemException.class
/home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/SystemException.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/Transaction.class
/home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/Transaction.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/TransactionManager.class
/home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/TransactionManager.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/TransactionRequiredException.class
/home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/TransactionRequiredException.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/TransactionRolledbackException.class
/home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/TransactionRolledbackException.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/TransactionSynchronizationRegistry.class
/home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/TransactionSynchronizationRegistry.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/UserTransaction.class
/home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/UserTransaction.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/xa/XAException.class
/home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/xa/XAException.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/xa/XAResource.class
/home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/xa/XAResource.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/xa/Xid.class
/home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/xa/Xid.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/org.slf4j/jcl-over-slf4j/jars/jcl-over-slf4j-1.7.21.jar:org/apache/commons/logging/Log.class
/home/johdah/.ivy2/cache/commons-logging/commons-logging/jars/commons-logging-1.1.1.jar:org/apache/commons/logging/Log.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/org.slf4j/jcl-over-slf4j/jars/jcl-over-slf4j-1.7.21.jar:org/apache/commons/logging/LogConfigurationException.class
/home/johdah/.ivy2/cache/commons-logging/commons-logging/jars/commons-logging-1.1.1.jar:org/apache/commons/logging/LogConfigurationException.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/org.slf4j/jcl-over-slf4j/jars/jcl-over-slf4j-1.7.21.jar:org/apache/commons/logging/LogFactory.class
/home/johdah/.ivy2/cache/commons-logging/commons-logging/jars/commons-logging-1.1.1.jar:org/apache/commons/logging/LogFactory.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/org.slf4j/jcl-over-slf4j/jars/jcl-over-slf4j-1.7.21.jar:org/apache/commons/logging/impl/NoOpLog.class
/home/johdah/.ivy2/cache/commons-logging/commons-logging/jars/commons-logging-1.1.1.jar:org/apache/commons/logging/impl/NoOpLog.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/org.slf4j/jcl-over-slf4j/jars/jcl-over-slf4j-1.7.21.jar:org/apache/commons/logging/impl/SimpleLog$1.class
/home/johdah/.ivy2/cache/commons-logging/commons-logging/jars/commons-logging-1.1.1.jar:org/apache/commons/logging/impl/SimpleLog$1.class
deduplicate: different file contents found in the following:
/home/johdah/.ivy2/cache/org.slf4j/jcl-over-slf4j/jars/jcl-over-slf4j-1.7.21.jar:org/apache/commons/logging/impl/SimpleLog.class
/home/johdah/.ivy2/cache/commons-logging/commons-logging/jars/commons-logging-1.1.1.jar:org/apache/commons/logging/impl/SimpleLog.class
at sbtassembly.Assembly$.applyStrategies(Assembly.scala:140)
at sbtassembly.Assembly$.x$1$lzycompute$1(Assembly.scala:25)
at sbtassembly.Assembly$.x$1$1(Assembly.scala:23)
at sbtassembly.Assembly$.stratMapping$lzycompute$1(Assembly.scala:23)
at sbtassembly.Assembly$.stratMapping$1(Assembly.scala:23)
at sbtassembly.Assembly$.inputs$lzycompute$1(Assembly.scala:67)
at sbtassembly.Assembly$.inputs$1(Assembly.scala:57)
at sbtassembly.Assembly$.apply(Assembly.scala:83)
at sbtassembly.Assembly$$anonfun$assemblyTask$1.apply(Assembly.scala:240)
at sbtassembly.Assembly$$anonfun$assemblyTask$1.apply(Assembly.scala:237)
at scala.Function1$$anonfun$compose$1.apply(Function1.scala:47)
at sbt.$tilde$greater$$anonfun$$u2219$1.apply(TypeFunctions.scala:40)
at sbt.std.Transform$$anon$4.work(System.scala:63)
at sbt.Execute$$anonfun$submit$1$$anonfun$apply$1.apply(Execute.scala:228)
at sbt.Execute$$anonfun$submit$1$$anonfun$apply$1.apply(Execute.scala:228)
at sbt.ErrorHandling$.wideConvert(ErrorHandling.scala:17)
at sbt.Execute.work(Execute.scala:237)
at sbt.Execute$$anonfun$submit$1.apply(Execute.scala:228)
at sbt.Execute$$anonfun$submit$1.apply(Execute.scala:228)
at sbt.ConcurrentRestrictions$$anon$4$$anonfun$1.apply(ConcurrentRestrictions.scala:159)
at sbt.CompletionService$$anon$2.call(CompletionService.scala:28)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
[error] (*:assembly) deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/io.netty/netty-handler/jars/netty-handler-4.0.39.Final.jar:META-INF/io.netty.versions.properties
[error] /home/johdah/.ivy2/cache/io.netty/netty-buffer/jars/netty-buffer-4.0.39.Final.jar:META-INF/io.netty.versions.properties
[error] /home/johdah/.ivy2/cache/io.netty/netty-common/jars/netty-common-4.0.39.Final.jar:META-INF/io.netty.versions.properties
[error] /home/johdah/.ivy2/cache/io.netty/netty-transport/jars/netty-transport-4.0.39.Final.jar:META-INF/io.netty.versions.properties
[error] /home/johdah/.ivy2/cache/io.netty/netty-codec/jars/netty-codec-4.0.39.Final.jar:META-INF/io.netty.versions.properties
[error] /home/johdah/.ivy2/cache/io.netty/netty-codec-http/jars/netty-codec-http-4.0.39.Final.jar:META-INF/io.netty.versions.properties
[error] /home/johdah/.ivy2/cache/io.netty/netty-transport-native-epoll/jars/netty-transport-native-epoll-4.0.39.Final-linux-x86_64.jar:META-INF/io.netty.versions.properties
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/HeuristicCommitException.class
[error] /home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/HeuristicCommitException.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/HeuristicMixedException.class
[error] /home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/HeuristicMixedException.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/HeuristicRollbackException.class
[error] /home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/HeuristicRollbackException.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/InvalidTransactionException.class
[error] /home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/InvalidTransactionException.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/NotSupportedException.class
[error] /home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/NotSupportedException.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/RollbackException.class
[error] /home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/RollbackException.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/Status.class
[error] /home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/Status.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/Synchronization.class
[error] /home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/Synchronization.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/SystemException.class
[error] /home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/SystemException.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/Transaction.class
[error] /home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/Transaction.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/TransactionManager.class
[error] /home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/TransactionManager.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/TransactionRequiredException.class
[error] /home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/TransactionRequiredException.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/TransactionRolledbackException.class
[error] /home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/TransactionRolledbackException.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/TransactionSynchronizationRegistry.class
[error] /home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/TransactionSynchronizationRegistry.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/UserTransaction.class
[error] /home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/UserTransaction.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/xa/XAException.class
[error] /home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/xa/XAException.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/xa/XAResource.class
[error] /home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/xa/XAResource.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/javax.transaction/jta/jars/jta-1.1.jar:javax/transaction/xa/Xid.class
[error] /home/johdah/.ivy2/cache/org.apache.geronimo.specs/geronimo-jta_1.1_spec/jars/geronimo-jta_1.1_spec-1.1.1.jar:javax/transaction/xa/Xid.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/org.slf4j/jcl-over-slf4j/jars/jcl-over-slf4j-1.7.21.jar:org/apache/commons/logging/Log.class
[error] /home/johdah/.ivy2/cache/commons-logging/commons-logging/jars/commons-logging-1.1.1.jar:org/apache/commons/logging/Log.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/org.slf4j/jcl-over-slf4j/jars/jcl-over-slf4j-1.7.21.jar:org/apache/commons/logging/LogConfigurationException.class
[error] /home/johdah/.ivy2/cache/commons-logging/commons-logging/jars/commons-logging-1.1.1.jar:org/apache/commons/logging/LogConfigurationException.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/org.slf4j/jcl-over-slf4j/jars/jcl-over-slf4j-1.7.21.jar:org/apache/commons/logging/LogFactory.class
[error] /home/johdah/.ivy2/cache/commons-logging/commons-logging/jars/commons-logging-1.1.1.jar:org/apache/commons/logging/LogFactory.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/org.slf4j/jcl-over-slf4j/jars/jcl-over-slf4j-1.7.21.jar:org/apache/commons/logging/impl/NoOpLog.class
[error] /home/johdah/.ivy2/cache/commons-logging/commons-logging/jars/commons-logging-1.1.1.jar:org/apache/commons/logging/impl/NoOpLog.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/org.slf4j/jcl-over-slf4j/jars/jcl-over-slf4j-1.7.21.jar:org/apache/commons/logging/impl/SimpleLog$1.class
[error] /home/johdah/.ivy2/cache/commons-logging/commons-logging/jars/commons-logging-1.1.1.jar:org/apache/commons/logging/impl/SimpleLog$1.class
[error] deduplicate: different file contents found in the following:
[error] /home/johdah/.ivy2/cache/org.slf4j/jcl-over-slf4j/jars/jcl-over-slf4j-1.7.21.jar:org/apache/commons/logging/impl/SimpleLog.class
[error] /home/johdah/.ivy2/cache/commons-logging/commons-logging/jars/commons-logging-1.1.1.jar:org/apache/commons/logging/impl/SimpleLog.class
[error] Total time: 5 s, completed Sep 16, 2016 11:14:53 AM


Reply all
Reply to author
Forward
0 new messages