cstamas opened a new pull request, #11778:
URL: https://github.com/apache/maven/pull/11778
This is Maven 3.x line using Resolver 2.x.
Notable:
* the Resolver 1.x "http" HTTP transport got renamed to "apache" transport
(IT MavenITmng7470ResolverTransportTest needs change for this):
```diff
diff --git
a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7470ResolverTransportTest.java
b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7470ResolverTransportTest.java
index 56970ec47..2c7a85652 100644
---
a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7470ResolverTransportTest.java
+++
b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7470ResolverTransportTest.java
@@ -100,7 +100,7 @@ public class MavenITmng7470ResolverTransportTest extends
AbstractMavenIntegratio
private static final String WAGON_LOG_SNIPPET = "[DEBUG] Using
transporter WagonTransporter";
- private static final String NATIVE_LOG_SNIPPET = "[DEBUG] Using
transporter HttpTransporter";
+ private static final String NATIVE_LOG_SNIPPET = "[DEBUG] Using
transporter ApacheTransporter";
@Test
public void testResolverTransportDefault() throws Exception {
```
* IT MavenITmng4368TimestampAwareArtifactInstallerTest is fluke: Resolver
2.x unlike Resolver 1.x _always installs if asked to install_. Resolver 1.x had
some rudimentary logic (file timestamp, file size) to perform "change
detection" that was removed from Resolver 2.x. If user wants "conditional
install" then the install API call needs to be wrapped into condition.
--
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]