Skip to content

Commit

Permalink
[MDEP-924] Get rid of maven-artifact-transfer from list-classes goal
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed Apr 24, 2024
1 parent 20a12ab commit 860d04b
Show file tree
Hide file tree
Showing 8 changed files with 520 additions and 222 deletions.
33 changes: 29 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,16 @@ under the License.

<properties>
<mavenVersion>3.6.3</mavenVersion>
<javaVersion>8</javaVersion>

<jettyVersion>9.4.54.v20240208</jettyVersion>
<mockito.version>4.11.0</mockito.version>
<plexus-archiver.version>4.9.2</plexus-archiver.version>
<pluginTestingVersion>3.3.0</pluginTestingVersion>
<resolverVersion>1.4.1</resolverVersion>
<javaVersion>8</javaVersion>
<project.build.outputTimestamp>2023-10-20T21:21:50Z</project.build.outputTimestamp>
<slf4j.version>1.7.36</slf4j.version>
<plexus-archiver.version>4.9.2</plexus-archiver.version>

<project.build.outputTimestamp>2023-10-20T21:21:50Z</project.build.outputTimestamp>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -324,6 +327,22 @@ under the License.
<version>${resolverVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<!-- support for JUnit 4 -->
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand All @@ -345,7 +364,13 @@ under the License.
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>4.11.0</version>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>

Expand Down

0 comments on commit 860d04b

Please sign in to comment.