Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SUREFIRE-1959] Update plugin (requires Maven 3.2.5+) #412

Merged
merged 1 commit into from Dec 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -133,8 +133,6 @@ public ArtifactResolutionResult answer( InvocationOnMock invocation )
.isNull();
assertThat( request.getLocalRepository() )
.isNull();
assertThat( request.getCache() )
.isNull();
assertThat( request.getCollectionFilter() )
.isNotNull();
assertThat( request.getCollectionFilter() )
Expand Down Expand Up @@ -204,8 +202,6 @@ public ArtifactResolutionResult answer( InvocationOnMock invocation )
.isNull();
assertThat( request.getLocalRepository() )
.isNull();
assertThat( request.getCache() )
.isNull();
assertThat( request.getCollectionFilter() )
.isNotNull();
assertThat( request.getCollectionFilter() )
Expand Down
9 changes: 6 additions & 3 deletions pom.xml
Expand Up @@ -88,7 +88,7 @@

<properties>
<javaVersion>7</javaVersion>
<mavenVersion>3.0</mavenVersion>
<mavenVersion>3.2.5</mavenVersion>
<!-- <shadedVersion>3.0.0-M2</shadedVersion> commented out due to https://issues.apache.org/jira/browse/MRELEASE-799 -->
<commonsLang3Version>3.8.1</commonsLang3Version>
<commonsCompress>1.20</commonsCompress>
Expand Down Expand Up @@ -129,7 +129,7 @@
<dependency>
<groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-api</artifactId>
<version>${mavenVersion}</version>
<version>3.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down Expand Up @@ -243,7 +243,7 @@
<dependency>
<groupId>org.apache.maven.plugin-testing</groupId>
<artifactId>maven-plugin-testing-harness</artifactId>
<version>2.1</version>
<version>3.3.0</version>
</dependency>
<dependency>
<groupId>org.xmlunit</groupId>
Expand Down Expand Up @@ -462,6 +462,9 @@
<arg>-Xdoclint:all</arg>
</compilerArgs>
<encoding>UTF-8</encoding>
<!-- https://bugs.java.com/bugdatabase/view_bug.do?bug_id=JDK-8186647 -->
<!-- org.eclipse.sisu.inject provide annotation processor -->
<proc>none</proc>
</configuration>
</plugin>
<!-- NOTE: animal sniffer does not check test classes: https://jira.codehaus.org/browse/MANIMALSNIFFER-40 -->
Expand Down