Skip to content

Commit

Permalink
[MRESOLVER-395] Update dependencies, tidy up
Browse files Browse the repository at this point in the history
Update dependencies:
* hazelcast 5.3.1
* redisson 3.23.2
* commons-codec 1.16.0
* maven (in demos and supplier) 3.9.4

Also, minor, but:
* remove redundant plugin assembly plugin (redisson, is defined in parent)
* fix demo plugin prerequisite, align with minimal maven build version

---

https://issues.apache.org/jira/browse/MRESOLVER-395
  • Loading branch information
cstamas committed Aug 3, 2023
1 parent 249c94c commit 5c860e5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<description>A simple Maven plugin using Maven Artifact Resolver with Maven repositories.</description>

<prerequisites>
<maven>${mavenVersion}</maven>
<maven>${minimalMavenBuildVersion}</maven>
</prerequisites>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion maven-resolver-named-locks-hazelcast/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast</artifactId>
<version>5.3.0</version>
<version>5.3.1</version>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
Expand Down
3 changes: 1 addition & 2 deletions maven-resolver-named-locks-redisson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
<version>3.21.3</version>
<version>3.23.2</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
Expand Down Expand Up @@ -135,7 +135,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>bundle</id>
Expand Down
2 changes: 1 addition & 1 deletion maven-resolver-transport-http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.15</version>
<version>1.16.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
<guiceVersion>5.1.0</guiceVersion>
<slf4jVersion>1.7.36</slf4jVersion>
<!-- used by supplier and demo only -->
<mavenVersion>3.9.3</mavenVersion>
<mavenVersion>3.9.4</mavenVersion>
<minimalMavenBuildVersion>[3.8.7,)</minimalMavenBuildVersion>
<minimalJavaBuildVersion>[1.8.0-362,)</minimalJavaBuildVersion>
<project.build.outputTimestamp>2023-07-20T09:56:17Z</project.build.outputTimestamp>
Expand Down

0 comments on commit 5c860e5

Please sign in to comment.