-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This upgrades the Hazelcast library used by this plugin from 5.3.7 to 5.5.0 As a result, the minimum required version of Java now is 17. This plugin now also adopted a new versioning scheme: the version number now reflects the version of the Hazelcast library that is in use. fixes #101
- Loading branch information
Showing
6 changed files
with
63 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,11 +8,18 @@ | |
</parent> | ||
<groupId>org.igniterealtime.openfire.plugins</groupId> | ||
<artifactId>hazelcast</artifactId> | ||
<version>3.1.1-SNAPSHOT</version> | ||
<version>5.5.0.1-SNAPSHOT</version> | ||
<name>Hazelcast Plugin</name> | ||
<description>Adds clustering support</description> | ||
|
||
<developers> | ||
<developer> | ||
<name>Guus der Kinderen</name> | ||
<email>[email protected]</email> | ||
<timezone>+1</timezone> | ||
<organization>Ignite Realtime</organization> | ||
<organizationUrl>http://www.igniterealtime.org</organizationUrl> | ||
</developer> | ||
<developer> | ||
<name>Tom Evans</name> | ||
</developer> | ||
|
@@ -33,6 +40,15 @@ | |
<build> | ||
<sourceDirectory>src/java</sourceDirectory> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.8.0</version> | ||
<configuration> | ||
<source>17</source> | ||
<target>17</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
</plugin> | ||
|
@@ -47,7 +63,7 @@ | |
<dependency> | ||
<groupId>com.hazelcast</groupId> | ||
<artifactId>hazelcast</artifactId> | ||
<version>5.3.7</version> | ||
<version>5.5.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters