jira-importer
jira-importer
**[Jon McLean](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mclean)** commented I have a similar issue. In my case the incorrect transform causes runtime issues. I am using maven-shade 2.3. I want to shade and relocate all dependencies...
**[Elliott Neil Clark](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=eclark)** commented Pretty sure that we're seeing this in https://issues.apache.org/jira/browse/HBA[SE-13889](https://issues.apache.org/jira/browse/SE-13889) We have the shad plugin configured like so: ``` org.apache.maven.plugins maven-shade-plugin package shade false true ${project.build.directory}/dependency-reduced-pom.xml *:* org.apache.hbase:hbase-resource-bundle...
**[Kerem Yazici](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=keremyzc)** commented we are having a similar issue where the below line ``` private static final String DEFAULT_TAG = "default"; ``` replaced with ``` private static final String DEFAULT_TAG...
**[Kerem Yazici](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=keremyzc)** commented a bit more information, so we have a tag that asks explicitly to shade the packages _de_ as below ``` de shaded.de ``` the actual package is...
**[Kerem Yazici](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=keremyzc)** commented but we can't apply the same fix for the _rx_ packages as it is the complete package name.
**[Dominik Süß](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=dsuess)** commented This one made me curse quite a lot the last hours - to work around I now "marked" the string and let the relocation undo this marker...
**[Eric Sirianni](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=sirianni)** commented > I rarely have seen cases were the relocation of values within Strings is intended - there should be at least an optional parameter within the relocation...
**[Matteo Moci](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mox601)** commented Using this configuration https://issues.apache.org/jira/browse/MSHADE-156?focusedCommentId=15944705&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-15944705 it seems this only happens when strings **start with** the relocation pattern: ``` public static final String A = "de-abc"; //this String is...
**[Shengnan YU](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=ysn2233)** commented Any solution on this issue? It is annoying.
**[Patrick McCauley](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=JIRAUSER286043)** commented I am seeing this as well. Any updates on a fix?