Allow running the it suite with mvn4 (#203)

This commit is contained in:
Guillaume Nodet 2022-10-07 08:27:22 +02:00 committed by GitHub
parent 3b98814f9e
commit 77a2226aa1
3 changed files with 13 additions and 6 deletions

View File

@ -31,7 +31,7 @@ under the License.
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<version>4.12</version>
</dependency>
</dependencies>

View File

@ -57,11 +57,6 @@ under the License.
<artifactId>maven-resolver-impl</artifactId>
<version>${mavenResolverVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.3</version>
</dependency>
</dependencies>
</project>

View File

@ -212,6 +212,18 @@ under the License.
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.1.0</version>
<dependencies>
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>extra-enforcer-rules</artifactId>
<version>1.6.0</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>