From 1fc32cda6526c7a53243e3626d6de6e032441e3b Mon Sep 17 00:00:00 2001 From: Daniel Wu Date: Wed, 14 Oct 2020 10:14:40 +0800 Subject: [PATCH] 2.1.1 doc update --- README.md | 14 +++++++++++--- pom.xml | 2 +- src/BUILD.md | 23 +++++++++++++++++++++++ 3 files changed, 35 insertions(+), 4 deletions(-) create mode 100644 src/BUILD.md diff --git a/README.md b/README.md index 2333776..8a7c83e 100755 --- a/README.md +++ b/README.md @@ -88,12 +88,21 @@ To use this project, simply add this to your pom.xml cn.danielw fast-object-pool - 2.1.0 + 2.1.1 ``` If you want disruptor object pool, add this optional dependency +JDK 8,9,10 +```xml + + com.conversantmedia + disruptor + 1.2.15 + +``` +JDK 11+ ```xml com.conversantmedia @@ -102,6 +111,5 @@ If you want disruptor object pool, add this optional dependency ``` - -JDK 8 is required. By default the debug messages are logged to JDK logger because one of the goals of this project is ZERO DEPENDENCY. However we have two optional dependencies, disruptor and SLF4j. +JDK 8/11 is required. By default the debug messages are logged to JDK logger because one of the goals of this project is ZERO DEPENDENCY. However we have two optional dependencies, disruptor and SLF4j. diff --git a/pom.xml b/pom.xml index 06baf5a..567ccc2 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ cn.danielw fast-object-pool jar - 2.1.0 + 2.1.1 An extremely fast object pool with zero dependencies UTF-8 diff --git a/src/BUILD.md b/src/BUILD.md new file mode 100644 index 0000000..1d95cd8 --- /dev/null +++ b/src/BUILD.md @@ -0,0 +1,23 @@ +# Publish to Nexus on Mac OSX + +## prepare the password +update ~/.m2/settings.xml +``` + + + + ossrh + your-jira-id + your-jira-pwd + + + +``` + + +## run the deployment with gpg profile +``` +GPG_TTY=$(tty) +export GPG_TTY +mvn clean deploy -P gpg +``` \ No newline at end of file