slawekjaranowski commented on issue #12497: URL: https://github.com/apache/maven/issues/12497#issuecomment-4995563549
I see https://github.com/mojohaus/jaxws-maven-plugin/blob/e2535600a431a832b71e047755abfb35d66c3d5a/src/main/java/org/codehaus/mojo/jaxws/AbstractJaxwsMojo.java#L547 ```java for ( Artifact a : pluginDescriptor.getArtifacts() ) { addArtifactToCp( a, artifactsMap, endorsedArtifacts ); } ... private void addArtifactToCp( Artifact a, Map<String, Artifact> artifactsMap, Set<Artifact> endorsedArtifacts ) { ... else if ( "compile".equals( a.getScope() ) || "runtime".equals( a.getScope() ) ) { artifactsMap.put( a.getGroupId() + ":" + a.getArtifactId(), a ); } } ``` so plugin dependencies with scope null is not added to ws class path -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
