michael-o commented on code in PR #26: URL: https://github.com/apache/maven-remote-resources-plugin/pull/26#discussion_r1130059550
########## src/main/java/org/apache/maven/plugin/resources/remote/ProcessRemoteResourcesMojo.java: ########## @@ -522,7 +476,6 @@ public void execute() Thread.currentThread().setContextClassLoader( classLoader ); velocity = new VelocityEngine(); - velocity.setProperty( RuntimeConstants.RUNTIME_LOG_LOGSYSTEM, this ); velocity.setProperty( "resource.loader", "classpath" ); velocity.setProperty( "classpath.resource.loader.class", ClasspathResourceLoader.class.getName() ); velocity.init(); Review Comment: You need to review these ########## pom.xml: ########## @@ -119,47 +129,36 @@ under the License. <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-archiver</artifactId> - <version>3.5.1</version> + <version>3.6.0</version> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> - <artifactId>maven-artifact-transfer</artifactId> - <version>0.13.1</version> + <artifactId>maven-filtering</artifactId> + <version>${mavenFilteringVersion}</version> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-common-artifact-filters</artifactId> - <version>3.2.0</version> - </dependency> - <dependency> - <groupId>org.apache.maven.shared</groupId> - <artifactId>maven-filtering</artifactId> - <version>${mavenFilteringVersion}</version> + <version>3.3.2</version> </dependency> <!-- plexus --> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-resources</artifactId> - <version>1.1.0</version> - <exclusions> - <exclusion> - <groupId>org.codehaus.plexus</groupId> - <artifactId>plexus-container-default</artifactId> - </exclusion> - </exclusions> + <version>1.2.0</version> </dependency> <!-- other --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> - <version>2.6</version> + <version>2.11.0</version> </dependency> <dependency> <groupId>org.apache.velocity</groupId> - <artifactId>velocity</artifactId> - <version>1.7</version> + <artifactId>velocity-engine-core</artifactId> + <version>2.3</version> Review Comment: Before doing this, you *must* verify whether all code has been cleanly migration, incl. properties. It is not just a simple replace dep issue. -- 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