我有一个包含多个依赖项的项目,最终会导致这种情况 取决于以下内容(我从sbt-dependency-graph plugin获得了这些内容):
commons-beanutils:commons-beanutils:1.7.0
commons-beanutils:commons-beanutils-core:1.8.0
因此,当我尝试使用sbt-assembly构建胖JAR时,它会因重复数据删除错误而失败:
[error] deduplicate: different file contents found in the following:
[error] /Users/someuser/.ivy2/cache/commons-beanutils/commons-beanutils/jars/someuser-beanutils-1.7.0.jar:org/apache/commons/beanutils/BasicDynaBean.class
[error] /Users/someuser/.ivy2/cache/commons-beanutils/commons-beanutils-core/jars/commons-beanutils-core-1.8.0.jar:org/apache/commons/beanutils/BasicDynaBean.class
由于我需要两个依赖项,因此我尝试使用以下规则对其中一个进行着色:
ShadeRule.rename("org.apache.commons.beanutils.**" -> "shadedstuff.beanutils.@1").inLibrary("commons-beanutils" % "commons-beanutils" % "1.7.0").inAll
但后来我收到以下错误:
[error] deduplicate: different file contents found in the following:
[error] /Users/someuser/.ivy2/cache/commons-beanutils/commons-beanutils/jars/someuser-beanutils-1.7.0.jar:shadedstuff/beanutils/BasicDynaBean.class
[error] /Users/someuser/.ivy2/cache/commons-beanutils/commons-beanutils-core/jars/commons-beanutils-core-1.8.0.jar:shadedstuff/beanutils/BasicDynaBean.class
好像着色过程应用于两个工件。如何遮蔽特定的神器?
答案 0 :(得分:3)
由于我需要两个依赖项,因此我尝试使用以下规则对其中一个进行着色:
ShadeRule.rename("org.apache.commons.beanutils.**" -> "shadedstuff.beanutils.@1").inLibrary("commons-beanutils" % "commons-beanutils" % "1.7.0").inAll
着色是sbt-assembly的一个贡献功能,基本上与Jar Jar Links集成,所以我不是这方面的专家。
话虽如此,我认为.inAll
违背了.inLibrary(...)
电话的目的。也许我在自述文件中描述它的方式还不够明确。
我认为你想要做的是将inLibrary(...)
放入commons-beanutils 1.7.0 和所有调用者,他们将commons-beanutils 1.7.0代码称为{ {1}}(在这种情况下是Hadoop?)