我正在使用shade插件来创建一个包含所有依赖项的jar。在我的pom.xml中应用此配置它相对简单:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<relocations>
<relocation>
<shadedPattern>com.company.lib.</shadedPattern>
<excludes>
<exclude>java.**</exclude>
<exclude>com.company.app.**</exclude>
<exclude>META-INF/**</exclude>
</excludes>
</relocation>
</relocations>
</configuration>
然而,反编译结果代码,我意识到我的字符串文字的内容已被更改。例如,一个这样的字符串:
String text = "this-is-a-demo";
已成为String text = "com.company.lib.this-is-a-demo"
。此更改在我的应用程序中执行了运行时错误。
在完成本文https://jira.codehaus.org/browse/MSHADE-104后,我尝试避免添加元素<rawString>true</rawString>
。但是当我再次构建项目时,maven-shade-plugin中发生了NullPointerException。
Caused by: org.apache.maven.plugin.MojoExecutionException: Error creating shaded jar: null
at org.apache.maven.plugins.shade.mojo.ShadeMojo.execute(ShadeMojo.java:567)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:106)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208)
... 19 more
有谁知道如何避免更改字符串文字?
答案 0 :(得分:0)
您的<pattern>
配置中缺少<relocation>
。
我不确定这是否是NullPointerException的原因,但你应该把它放进去,所以执行的重定位将不那么令人惊讶。