elharo commented on code in PR #487: URL: https://github.com/apache/maven-dependency-plugin/pull/487#discussion_r1850874021
########## src/main/java/org/apache/maven/plugins/dependency/fromConfiguration/AbstractFromConfigurationMojo.java: ########## @@ -367,7 +367,7 @@ public void setArtifact(String artifact) throws MojoFailureException { if (artifact != null) { String packaging = "jar"; String classifier; - String[] tokens = StringUtils.split(artifact, ":"); + String[] tokens = artifact.split(":"); Review Comment: This is likely the issue. I think the split methods may not be quite the same. -- 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: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org