michael-o commented on code in PR #711: URL: https://github.com/apache/maven/pull/711#discussion_r850755008
########## pom.xml: ########## @@ -65,7 +65,7 @@ under the License. <cipherVersion>2.0</cipherVersion> <modelloVersion>2.0.0</modelloVersion> <jxpathVersion>1.3</jxpathVersion> - <resolverVersion>1.7.2</resolverVersion> + <resolverVersion>1.7.3</resolverVersion> Review Comment: This is basically irrelevant since we are going to 1.8.0 anyway ########## apache-maven/pom.xml: ########## @@ -63,21 +63,10 @@ under the License. <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-http</artifactId> - <classifier>shaded</classifier> - <exclusions> - <exclusion> - <groupId>org.apache.httpcomponents</groupId> - <artifactId>httpclient</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.httpcomponents</groupId> - <artifactId>httpcore</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.maven.wagon</groupId> - <artifactId>wagon-http-shared</artifactId> Review Comment: Create a followup ticket for WAGON to drop the shaded artifact. ########## maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java: ########## @@ -78,6 +78,22 @@ @Named public class DefaultRepositorySystemSessionFactory { + private static final String MAVEN_TRANSPORT_KEY = "maven.transport"; Review Comment: Must be: `MAVEN_RESOLVER_TRANSPORT = maven.resolver.transport` ########## maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java: ########## @@ -78,6 +78,22 @@ @Named public class DefaultRepositorySystemSessionFactory { + private static final String MAVEN_TRANSPORT_KEY = "maven.transport"; + + private static final String MAVEN_TRANSPORT_WAGON = "wagon"; + + private static final String MAVEN_TRANSPORT_RESOLVER = "resolver"; Review Comment: Should have been: `internal` or similar since Resolver decides what is used internally. -- 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