mirror of https://github.com/apache/maven.git
Reverting some unexpected aether dependency changes to the top-level pom which broke the build
Signed-off-by: Jason van Zyl <jason@tesla.io>
This commit is contained in:
parent
cf4d0be0ae
commit
4849df9183
22
pom.xml
22
pom.xml
|
@ -58,8 +58,8 @@
|
|||
<cipherVersion>1.7</cipherVersion>
|
||||
<modelloVersion>1.7</modelloVersion>
|
||||
<jxpathVersion>1.3</jxpathVersion>
|
||||
<aetherVersion>1.13.1</aetherVersion>
|
||||
<slf4jVersion>1.7.2</slf4jVersion>
|
||||
<aetherVersion>0.9.0.M2</aetherVersion>
|
||||
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
|
||||
<!-- Control the name of the distribution and information output by mvn -->
|
||||
<distributionId>apache-maven</distributionId>
|
||||
|
@ -264,29 +264,39 @@
|
|||
</dependency>
|
||||
<!-- Repository -->
|
||||
<dependency>
|
||||
<groupId>org.eclipse.aether</groupId>
|
||||
<groupId>org.sonatype.aether</groupId>
|
||||
<artifactId>aether-api</artifactId>
|
||||
<version>${aetherVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.aether</groupId>
|
||||
<groupId>org.sonatype.aether</groupId>
|
||||
<artifactId>aether-spi</artifactId>
|
||||
<version>${aetherVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.aether</groupId>
|
||||
<groupId>org.sonatype.aether</groupId>
|
||||
<artifactId>aether-impl</artifactId>
|
||||
<version>${aetherVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.aether</groupId>
|
||||
<groupId>org.sonatype.aether</groupId>
|
||||
<artifactId>aether-util</artifactId>
|
||||
<version>${aetherVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.aether</groupId>
|
||||
<groupId>org.sonatype.aether</groupId>
|
||||
<artifactId>aether-connector-wagon</artifactId>
|
||||
<version>${aetherVersion}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-container-default</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.sonatype.sisu</groupId>
|
||||
<artifactId>sisu-inject-plexus</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<!-- Commons -->
|
||||
<dependency>
|
||||
|
|
Loading…
Reference in New Issue