You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
maven-war-plugin copies maven-ivy-pluign managed artifacts with @{extensions}@ as file extension
Example:
[DEBUG] Processing: jersey-json-1.13-jersey-json.@{extension}@
[DEBUG] + WEB-INF/lib/jersey-json-1.13-jersey-json.@{extension}@ has been copied.
The issue is in maven-plugins/maven-common/src/main/groovy/com/github/goldin/plugins/common/ConversionUtils.groovy toMavenArtifact() where new org.apache.maven.artifact.handler.DefaultArtifactHandler() is created with default arguments. DefaultArtifactHandler class actually contains 'extension' member which is used by maven-war-plugin to determine the artifact extension to use. The value can be set to proper value using DefaultArtifactHandler(String type) constructor (http://maven.apache.org/ref/3.0/maven-core/apidocs/org/apache/maven/artifact/handler/DefaultArtifactHandler.html#DefaultArtifactHandler%28java.lang.String%29)
The text was updated successfully, but these errors were encountered:
maven-war-plugin copies maven-ivy-pluign managed artifacts with @{extensions}@ as file extension
Example:
[DEBUG] Processing: jersey-json-1.13-jersey-json.@{extension}@
[DEBUG] + WEB-INF/lib/jersey-json-1.13-jersey-json.@{extension}@ has been copied.
The issue is in maven-plugins/maven-common/src/main/groovy/com/github/goldin/plugins/common/ConversionUtils.groovy toMavenArtifact() where new org.apache.maven.artifact.handler.DefaultArtifactHandler() is created with default arguments. DefaultArtifactHandler class actually contains 'extension' member which is used by maven-war-plugin to determine the artifact extension to use. The value can be set to proper value using DefaultArtifactHandler(String type) constructor (http://maven.apache.org/ref/3.0/maven-core/apidocs/org/apache/maven/artifact/handler/DefaultArtifactHandler.html#DefaultArtifactHandler%28java.lang.String%29)
The text was updated successfully, but these errors were encountered: