Skip to content

Commit

Permalink
Dependency updates (#116)
Browse files Browse the repository at this point in the history
Changes:
* plexus-utils to 3.5.1 (has important XML parsing bugfixes)
* plexus-javac 1.1.2
* plexus-classworlds 2.7.0
* JDT
* gson 2.10.1
* test deos, sort out legacy hamcrest in both modules
  • Loading branch information
cstamas authored Mar 3, 2023
1 parent eda0d73 commit 692fde5
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 14 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<guava.version>31.1-jre</guava.version>
<mavenPluginPluginVersion>3.6.4</mavenPluginPluginVersion>
<m2eWorkspaceVersion>0.4.0</m2eWorkspaceVersion>
<plexusVersion>3.5.0</plexusVersion>
<plexusVersion>3.5.1</plexusVersion>
<pluginTestingVersion>3.0.1</pluginTestingVersion>
</properties>

Expand Down
12 changes: 12 additions & 0 deletions takari-lifecycle-plugin-its/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,18 @@
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
32 changes: 19 additions & 13 deletions takari-lifecycle-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-java</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand All @@ -89,7 +89,7 @@
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-classworlds</artifactId>
<version>2.6.0</version>
<version>2.7.0</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -127,7 +127,7 @@
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.core</artifactId>
<version>3.31.0</version>
<version>3.32.0</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
Expand All @@ -138,7 +138,7 @@
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.compiler.apt</artifactId>
<version>1.4.200</version>
<version>1.4.300</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
Expand All @@ -149,7 +149,7 @@
<dependency>
<groupId>org.eclipse.platform</groupId>
<artifactId>org.eclipse.osgi</artifactId>
<version>3.18.100</version>
<version>3.18.200</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
Expand Down Expand Up @@ -183,7 +183,7 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10</version>
<version>2.10.1</version>
</dependency>
<!-- Logging -->
<dependency>
Expand Down Expand Up @@ -212,21 +212,27 @@

<!-- test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<artifactId>hamcrest-core</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.23.1</version>
<version>3.24.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -298,7 +304,7 @@
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-file</artifactId>
<version>3.5.2</version>
<version>3.5.3</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -331,7 +337,7 @@
<plugin>
<groupId>org.codehaus.modello</groupId>
<artifactId>modello-maven-plugin</artifactId>
<version>2.0.0</version>
<version>2.1.1</version>
<executions>
<execution>
<id>standard</id>
Expand Down

0 comments on commit 692fde5

Please sign in to comment.