mirror of https://github.com/apache/maven.git
[MNG-7246] Upgrade Plexus Cipher and Sec Dispatcher to 2.0
Both plexus-cipher and plexus-sec-dispatcher have had a groupId change, but plexus-cipher change was implemented for 1.8 version. Latest versions of artifacts are 2.0. This PR ups plexus-cipher version and adds proper changes for plexus-sec-dispatcher groupId change. This closes #534
This commit is contained in:
parent
ccafe8bf46
commit
c76c9d9116
|
@ -473,7 +473,7 @@ under the License.
|
|||
<version>${mercuryMp3Version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.sonatype.plexus</groupId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-sec-dispatcher</artifactId>
|
||||
<version>${securityDispatcherVersion}</version>
|
||||
</dependency>
|
||||
|
|
|
@ -473,7 +473,7 @@ under the License.
|
|||
<version>${mercuryMp3Version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.sonatype.plexus</groupId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-sec-dispatcher</artifactId>
|
||||
<version>${securityDispatcherVersion}</version>
|
||||
</dependency>
|
||||
|
|
|
@ -473,7 +473,7 @@ under the License.
|
|||
<version>${mercuryMp3Version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.sonatype.plexus</groupId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-sec-dispatcher</artifactId>
|
||||
<version>${securityDispatcherVersion}</version>
|
||||
</dependency>
|
||||
|
|
|
@ -131,7 +131,7 @@ under the License.
|
|||
<artifactId>org.eclipse.sisu.plexus</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.sonatype.plexus</groupId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-sec-dispatcher</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
|
|
@ -62,7 +62,7 @@ under the License.
|
|||
<artifactId>maven-settings</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.sonatype.plexus</groupId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-sec-dispatcher</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
|
17
pom.xml
17
pom.xml
|
@ -61,8 +61,8 @@ under the License.
|
|||
<sisuInjectVersion>0.3.4</sisuInjectVersion>
|
||||
<wagonVersion>3.4.3</wagonVersion>
|
||||
<jsoupVersion>1.12.1</jsoupVersion>
|
||||
<securityDispatcherVersion>1.4</securityDispatcherVersion>
|
||||
<cipherVersion>1.8</cipherVersion>
|
||||
<securityDispatcherVersion>2.0</securityDispatcherVersion>
|
||||
<cipherVersion>2.0</cipherVersion>
|
||||
<modelloVersion>1.11</modelloVersion>
|
||||
<jxpathVersion>1.3</jxpathVersion>
|
||||
<resolverVersion>1.6.3</resolverVersion>
|
||||
|
@ -402,15 +402,9 @@ under the License.
|
|||
<version>${commonsLangVersion}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.sonatype.plexus</groupId>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
<artifactId>plexus-sec-dispatcher</artifactId>
|
||||
<version>${securityDispatcherVersion}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.sonatype.plexus</groupId>
|
||||
<artifactId>plexus-cipher</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.plexus</groupId>
|
||||
|
@ -641,15 +635,16 @@ under the License.
|
|||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<phase>validate</phase>
|
||||
<id>ensure-no-org.sonatype:plexus-cipher</id>
|
||||
<id>ensure-no-sonatype-cipher-and-sec-dispatcher</id>
|
||||
<configuration>
|
||||
<rules>
|
||||
<bannedDependencies>
|
||||
<excludes>
|
||||
<exclude>org.sonatype.plexus:plexus-sec-dispatcher</exclude>
|
||||
<exclude>org.sonatype.plexus:plexus-cipher</exclude>
|
||||
</excludes>
|
||||
<message>
|
||||
ensure no more org.sonatype.plexus:plexus-cipher as groupId changed. you have to add some exclusions.
|
||||
ensure no more org.sonatype.plexus:plexus-cipher and org.sonatype.plexus:plexus-sec-dispatcher.
|
||||
</message>
|
||||
</bannedDependencies>
|
||||
</rules>
|
||||
|
|
Loading…
Reference in New Issue