This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch maven-3.8.x-resolver-1.8.x in repository https://gitbox.apache.org/repos/asf/maven.git
commit 1a1f99627b30bad7a69441f79b76b05cbdc91c44 Author: Michael Osipov <[email protected]> AuthorDate: Sun Jul 24 00:12:16 2022 +0200 [MNG-7520] Simplify integration of Redisson and Hazelcast for Maven Resolver Co-authored-by: Jacques-Etienne Beaudet <[email protected]> This closes #776 --- apache-maven/src/bin/m2.conf | 2 ++ apache-maven/src/lib/ext/README.txt | 2 +- apache-maven/src/lib/ext/hazelcast/README.txt | 6 ++++++ apache-maven/src/lib/ext/redisson/README.txt | 6 ++++++ 4 files changed, 15 insertions(+), 1 deletion(-) diff --git a/apache-maven/src/bin/m2.conf b/apache-maven/src/bin/m2.conf index 2235f820f..c44656832 100644 --- a/apache-maven/src/bin/m2.conf +++ b/apache-maven/src/bin/m2.conf @@ -4,5 +4,7 @@ set maven.conf default ${maven.home}/conf [plexus.core] load ${maven.conf}/logging +optionally ${maven.home}/lib/ext/redisson/*.jar +optionally ${maven.home}/lib/ext/hazelcast/*.jar optionally ${maven.home}/lib/ext/*.jar load ${maven.home}/lib/*.jar diff --git a/apache-maven/src/lib/ext/README.txt b/apache-maven/src/lib/ext/README.txt index 5ebe59eb3..ab7f12a71 100644 --- a/apache-maven/src/lib/ext/README.txt +++ b/apache-maven/src/lib/ext/README.txt @@ -1,2 +1,2 @@ -Use this directory to contribute 3rd-party extensions to the Maven core. These extensions can either extend or override +Use this directory to add third party extensions to Maven Core. These extensions can either extend or override Maven's default implementation. diff --git a/apache-maven/src/lib/ext/hazelcast/README.txt b/apache-maven/src/lib/ext/hazelcast/README.txt new file mode 100644 index 000000000..77d19b140 --- /dev/null +++ b/apache-maven/src/lib/ext/hazelcast/README.txt @@ -0,0 +1,6 @@ +This directory is intended to contain Hazelcast [1] JARs for Maven Resolver Named Locks using Hazelcast. + +See here [2] on how to add necessary JARs. + +[1] https://github.com/hazelcast/hazelcast +[2] https://maven.apache.org/resolver/maven-resolver-named-locks-hazelcast/index.html#installation-testing diff --git a/apache-maven/src/lib/ext/redisson/README.txt b/apache-maven/src/lib/ext/redisson/README.txt new file mode 100644 index 000000000..58342b19d --- /dev/null +++ b/apache-maven/src/lib/ext/redisson/README.txt @@ -0,0 +1,6 @@ +This directory is intended to contain Redisson [1] JARs for Maven Resolver Named Locks using Redisson. + +See here [2] on how to add necessary JARs. + +[1] https://github.com/redisson/redisson +[2] https://maven.apache.org/resolver/maven-resolver-named-locks-redisson/index.html#installation-testing
