jira-importer

Results 1253 comments of jira-importer

**[Delany](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=delany)** commented Ok here's my workaround ```java -Xep:SuppressWarningsWithoutExplanation:WARN ... -Xlint:all,-processing -XDcompilePolicy=byfile -Xplugin:ErrorProne -XepDisableAllChecks ${build.ep} ... EPE EPE -Xep:${EPE}:ERROR EPW EPW -Xep:${EPW}:WARN EPP EPP -XepPatchLocation:IN_PLACE -XepPatchChecks:${EPP} ``` Then if I want...

**[Delany](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=delany)** commented It seems like keepDependenciesWithProvidedScope is operating on the dependencies defined in artifactSet only. But when promoteTransitiveDependencies is true artifactSet becomes a set of trees of dependencies not just...

**[sify21](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=sify21)** commented I posted a work-around here: https://stackoverflow.com/questions/74119618/maven-shade-plugin-relocate-classes-under-meta-inf-versions-in-multi-release-jar/74123163#74123163

**[Ilya Kasnacheev](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=ilyak)** commented This is a Shade bug, since it works the other way around: Flatten maven plugin will pick up changes made by Shade, but Shade will ignore changes...

**[James Z.M. Gao](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=gzm55)** commented [Ilya Kasnacheev](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=ilyak) this [pr](https://github.com/apache/maven-shade-plugin/pull/129) makes it possible to chain the flatten and shade plugins on rewriting the project pom. This pr does not change the `originalModel`....

**[Ilya Kasnacheev](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=ilyak)** commented Unfortunately I'm not a committer to Maven and can't carry modified Maven around. Still, thank you.

**[Jesse Glick](https://issues.apache.org/jira/secure/[email protected])** commented https://github.com/mojohaus/flatten-maven-plugin/releases/tag/flatten-maven-plugin-1.3.0

**[Michael Osipov](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=michael-o)** commented Arrrr, yet another ASM upgrade waiting...

**[Sylwester Lachiewicz](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=slachiewicz)** commented Version 3.4.1 should work. ASM was updated to 9.4 in https://github.com/apache/maven-shade-plugin/commit/7603e5778236455c03385e6efa9cf123e82be722  

**[Markus Karg](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mkarg)** commented Maybe it would be a good idea to actually **not** provide a new goal, but instead have a different **Shader** strategy. This sounds most intuitive: What you...