From 7d6215e4975b2d0f6a9cfaa4b33548f324f5f686 Mon Sep 17 00:00:00 2001 From: Jeroen Hoek Date: Mon, 10 Aug 2020 09:47:23 +0200 Subject: [PATCH] Remove unsupported Javadoc tag --- pom.xml.releaseBackup | 204 ++++++++++++++++++ release.properties | 28 +++ uniqueid-core/pom.xml.releaseBackup | 55 +++++ .../java/org/lable/oss/uniqueid/Clock.java | 4 +- uniqueid-etcd/pom.xml.releaseBackup | 112 ++++++++++ uniqueid-zookeeper/pom.xml.releaseBackup | 62 ++++++ 6 files changed, 463 insertions(+), 2 deletions(-) create mode 100644 pom.xml.releaseBackup create mode 100644 release.properties create mode 100644 uniqueid-core/pom.xml.releaseBackup create mode 100644 uniqueid-etcd/pom.xml.releaseBackup create mode 100644 uniqueid-zookeeper/pom.xml.releaseBackup diff --git a/pom.xml.releaseBackup b/pom.xml.releaseBackup new file mode 100644 index 0000000..32b9436 --- /dev/null +++ b/pom.xml.releaseBackup @@ -0,0 +1,204 @@ + + + + 4.0.0 + + + org.lable.oss + parent + 1.7 + + + org.lable.oss.uniqueid + uniqueid + 2.6-beta5-SNAPSHOT + pom + + UniqueID + A unique ID generator that specialises in small IDs. + 2014 + https://github.com/LableOrg/java-uniqueid + + + uniqueid-core + uniqueid-zookeeper + uniqueid-etcd + + + + 1.8 + + 2.9-beta4 + 3.4.6 + 0.4.1 + 1.7.21 + + + 2.7 + 1.0 + + + + + The Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0 + + + + + scm:git:git@github.com:LableOrg/java-uniqueid.git + scm:git:git@github.com:LableOrg/java-uniqueid.git + https://github.com/LableOrg/java-uniqueid + HEAD + + + + + jdhoek + Jeroen Hoek + jeroen.hoek@lable.nl + Lable + http://lable.nl + + + + + + + uniqueid-core + org.lable.oss.uniqueid + ${project.version} + + + org.apache.zookeeper + zookeeper + ${zookeeper.version} + + + + com.sun.jmx + jmxri + + + com.sun.jdmk + jmxtools + + + javax.jms + jms + + + + + + + + + org.slf4j + slf4j-api + ${slf4j.version} + + + + org.apache.logging.log4j + log4j-slf4j-impl + ${log4j.version} + test + + + org.apache.logging.log4j + log4j-core + ${log4j.version} + test + + + org.apache.logging.log4j + log4j-web + ${log4j.version} + test + + + org.slf4j + log4j-over-slf4j + ${slf4j.version} + test + + + com.github.stefanbirkner + system-rules + 1.4.0 + test + + + commons-codec + commons-codec + 1.9 + test + + + net.ggtools.junit + junit-categories + 1.0 + test + + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + ${maven.failsafe.plugin.version} + + net.ggtools.junit.categories.Slow + + + + + com.mycila + license-maven-plugin + + + + + + + + it-slow + + + it-slow + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + ${maven.failsafe.plugin.version} + + + net.ggtools.junit.categories.Slow + + + + + + + diff --git a/release.properties b/release.properties new file mode 100644 index 0000000..de7e4ee --- /dev/null +++ b/release.properties @@ -0,0 +1,28 @@ +#release configuration +#Mon Aug 10 09:33:40 CEST 2020 +scm.commentPrefix=[maven-release-plugin] +pushChanges=true +project.dev.org.lable.oss.uniqueid\:uniqueid=3.1-SNAPSHOT +scm.tag=v3.0 +remoteTagging=true +project.scm.org.lable.oss.uniqueid\:uniqueid-core.empty=true +exec.additionalArguments=-Dit +project.dev.org.lable.oss.uniqueid\:uniqueid-etcd=3.1-SNAPSHOT +project.rel.org.lable.oss.uniqueid\:uniqueid=3.0 +project.dev.org.lable.oss.uniqueid\:uniqueid-core=3.1-SNAPSHOT +projectVersionPolicyId=default +project.rel.org.lable.oss.uniqueid\:uniqueid-etcd=3.0 +project.rel.org.lable.oss.uniqueid\:uniqueid-core=3.0 +scm.url=scm\:git\:git@github.com\:LableOrg/java-uniqueid.git +scm.tagNameFormat=v@{project.version} +project.rel.org.lable.oss.uniqueid\:uniqueid-zookeeper=3.0 +project.scm.org.lable.oss.uniqueid\:uniqueid.developerConnection=scm\:git\:git@github.com\:LableOrg/java-uniqueid.git +project.scm.org.lable.oss.uniqueid\:uniqueid-zookeeper.empty=true +preparationGoals=clean verify +project.scm.org.lable.oss.uniqueid\:uniqueid.tag=HEAD +project.scm.org.lable.oss.uniqueid\:uniqueid-etcd.empty=true +project.dev.org.lable.oss.uniqueid\:uniqueid-zookeeper=3.1-SNAPSHOT +exec.snapshotReleasePluginAllowed=false +project.scm.org.lable.oss.uniqueid\:uniqueid.url=https\://github.com/LableOrg/java-uniqueid +project.scm.org.lable.oss.uniqueid\:uniqueid.connection=scm\:git\:git@github.com\:LableOrg/java-uniqueid.git +completedPhase=end-release diff --git a/uniqueid-core/pom.xml.releaseBackup b/uniqueid-core/pom.xml.releaseBackup new file mode 100644 index 0000000..55c8cec --- /dev/null +++ b/uniqueid-core/pom.xml.releaseBackup @@ -0,0 +1,55 @@ + + + + + uniqueid + org.lable.oss.uniqueid + 2.6-beta5-SNAPSHOT + + 4.0.0 + + uniqueid-core + UniqueID :: Core + + + + + maven-failsafe-plugin + + + + org.jacoco + jacoco-maven-plugin + + + + org.apache.maven.plugins + maven-jar-plugin + 2.6 + + + + test-jar + + + + + + + \ No newline at end of file diff --git a/uniqueid-core/src/main/java/org/lable/oss/uniqueid/Clock.java b/uniqueid-core/src/main/java/org/lable/oss/uniqueid/Clock.java index 19f2b01..d8a7e2a 100644 --- a/uniqueid-core/src/main/java/org/lable/oss/uniqueid/Clock.java +++ b/uniqueid-core/src/main/java/org/lable/oss/uniqueid/Clock.java @@ -17,8 +17,8 @@ /** * Abstraction for the clock implementation. This allows for use of this library in deterministic systems and tests. - * - * @implNote Clocks should at a minimum progress once every millisecond. + *

+ * Implementation note: clocks should at a minimum progress once every millisecond. */ @FunctionalInterface public interface Clock { diff --git a/uniqueid-etcd/pom.xml.releaseBackup b/uniqueid-etcd/pom.xml.releaseBackup new file mode 100644 index 0000000..51aa35c --- /dev/null +++ b/uniqueid-etcd/pom.xml.releaseBackup @@ -0,0 +1,112 @@ + + + + + uniqueid + org.lable.oss.uniqueid + 2.6-beta5-SNAPSHOT + + 4.0.0 + + uniqueid-etcd + UniqueID :: Etcd + + + + uniqueid-core + org.lable.oss.uniqueid + + + io.etcd + jetcd-core + ${jetcd-version} + + + + + uniqueid-core + org.lable.oss.uniqueid + tests + test + ${project.version} + + + io.etcd + jetcd-launcher + ${jetcd-version} + test + + + com.github.npathai + hamcrest-optional + ${hamcrest.optional} + test + + + + + + + maven-failsafe-plugin + + + + org.jacoco + jacoco-maven-plugin + + + + org.apache.maven.plugins + maven-shade-plugin + 3.2.1 + + + package + + shade + + + true + shaded + + + com.google. + com.shaded.google. + + + io.grpc. + io.shaded.grpc. + + + io.netty. + io.shaded.netty. + + + + + + + + + + + + + diff --git a/uniqueid-zookeeper/pom.xml.releaseBackup b/uniqueid-zookeeper/pom.xml.releaseBackup new file mode 100644 index 0000000..ce125de --- /dev/null +++ b/uniqueid-zookeeper/pom.xml.releaseBackup @@ -0,0 +1,62 @@ + + + + + uniqueid + org.lable.oss.uniqueid + 2.6-beta5-SNAPSHOT + + 4.0.0 + + uniqueid-zookeeper + UniqueID :: ZooKeeper + + + + uniqueid-core + org.lable.oss.uniqueid + + + org.lable.oss.dynamicconfig + zookeeper-connection + ${dynamicconfig.version} + + + + + uniqueid-core + org.lable.oss.uniqueid + tests + test + ${project.version} + + + + + + + maven-failsafe-plugin + + + org.jacoco + jacoco-maven-plugin + + + +