diff --git a/pom.xml b/pom.xml index b2ea4e7..7639d32 100644 --- a/pom.xml +++ b/pom.xml @@ -1,38 +1,57 @@ - - + 4.0.0 - io.teknek + + + org.apache + apache + RELEASE + + + org.apache.gossip gossip gossip - 0.0.4-SNAPSHOT - A peer to peer cluster discovery service + 0.1.0-incubating jar - + A peer to peer cluster discovery service + http://gossip.incubator.apache.org/ + + UTF-8 + 1.8 + + + 1.8.0 + 4.12 + 1.2.17 + 0.0.0 + + + 3.5.1 + 2.10 + 3.0.0 + 1.6 + 2.10 - - - org.sonatype.oss - oss-parent - 7 - - + The Apache Software License, Version 2.0 @@ -40,34 +59,41 @@ repo - + - https://github.com/edwardcapriolo/gossip - https://github.com/edwardcapriolo/gossip.git - scm:git:git@github.com:edwardcapriolo/gossip.git + scm:git:git@github.com:apache/incubator-gossip.git + scm:git:https://git-wip-us.apache.org/repos/asf/incubator-gossip.git + scm:git:git@github.com:apache/incubator-gossip.git + HEAD + + + JIRA + https://issues.apache.org/jira/browse/GOSSIP + + com.fasterxml.jackson jackson-datatype-json-org - 1.8.0 + ${jackson-datatype-json-org.version} junit junit - 4.11 + ${junit.version} test - io.teknek - tunit - 0.0.0 - test - + io.teknek + tunit + ${tunit.version} + test + log4j log4j - 1.2.15 + ${log4j.version} jar compile @@ -85,8 +111,8 @@ - + @@ -97,6 +123,7 @@ org.apache.maven.plugins maven-gpg-plugin + ${maven-gpg-plugin.version} sign-artifacts @@ -110,10 +137,9 @@ org.apache.maven.plugins maven-jar-plugin - 2.2 - - - + ${maven-jar-plugin.version} + + @@ -125,12 +151,11 @@ org.apache.maven.plugins maven-eclipse-plugin - 2.5.1 + ${maven-eclipse-plugin.version} [artifactId] true true - 1.5 org.eclipse.jdt.core.javabuilder org.maven.ide.eclipse.maven2Builder @@ -142,37 +167,81 @@ + org.apache.maven.plugins maven-compiler-plugin + ${maven-compiler-plugin.version} - 1.7 - 1.7 + ${java.version} + ${java.version} + true org.apache.maven.plugins maven-dependency-plugin - 2.4 + ${maven-dependency-plugin.version} + + + central + Maven Repository + https://repo1.maven.org/maven2 + + true + + + false + + - + + + + central + https://repo1.maven.org/maven2 + + true + + + false + + + + ecapriolo Edward Capriolo edlinuxguru@gmail.com - - - + https://github.com/edwardcapriolo + Apache Software Foundation + http://gossip.incubator.apache.org/ developer -6 + + + + Dev Mailing List + dev@gossip.incubator.apache.org + dev-subscribe@gossip.incubator.apache.org + dev-unsubscribe@gossip.incubator.apache.org + + + Commits Mailing List + commits@gossip.incubator.apache.org + commits-subscribe@gossip.incubator.apache.org + commits-unsubscribe@gossip.incubator.apache.org + + + release-sign-artifacts @@ -187,7 +256,7 @@ org.apache.maven.plugins maven-gpg-plugin - 1.1 + ${maven-gpg-plugin.version} sign-artifacts @@ -203,4 +272,3 @@ - diff --git a/src/main/resources/log4j.properties b/src/main/resources/log4j.properties new file mode 100644 index 0000000..e2a60e1 --- /dev/null +++ b/src/main/resources/log4j.properties @@ -0,0 +1,20 @@ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +log4j.rootLogger=INFO,stdout + +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.layout.ConversionPattern=%5p %d{HH:mm:ss,SSS} %m%n + +log4j.logger.io.teknek=DEBUG +log4j.logger.com.google.code.gossip=INFO diff --git a/src/test/java/io/teknek/gossip/ShutdownDeadtimeTest.java b/src/test/java/org/apache/gossip/ShutdownDeadtimeTest.java similarity index 99% rename from src/test/java/io/teknek/gossip/ShutdownDeadtimeTest.java rename to src/test/java/org/apache/gossip/ShutdownDeadtimeTest.java index 340886a..0420444 100644 --- a/src/test/java/io/teknek/gossip/ShutdownDeadtimeTest.java +++ b/src/test/java/org/apache/gossip/ShutdownDeadtimeTest.java @@ -15,7 +15,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package io.teknek.gossip; +package org.apache.gossip; import io.teknek.tunit.TUnit; diff --git a/src/test/java/io/teknek/gossip/StartupSettingsTest.java b/src/test/java/org/apache/gossip/StartupSettingsTest.java similarity index 99% rename from src/test/java/io/teknek/gossip/StartupSettingsTest.java rename to src/test/java/org/apache/gossip/StartupSettingsTest.java index a4a9011..363b4e2 100644 --- a/src/test/java/io/teknek/gossip/StartupSettingsTest.java +++ b/src/test/java/org/apache/gossip/StartupSettingsTest.java @@ -15,7 +15,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package io.teknek.gossip; +package org.apache.gossip; import org.apache.gossip.GossipMember; import org.apache.gossip.GossipService; diff --git a/src/test/java/io/teknek/gossip/TenNodeThreeSeedTest.java b/src/test/java/org/apache/gossip/TenNodeThreeSeedTest.java similarity index 99% rename from src/test/java/io/teknek/gossip/TenNodeThreeSeedTest.java rename to src/test/java/org/apache/gossip/TenNodeThreeSeedTest.java index 2b5f7fe..d194efe 100644 --- a/src/test/java/io/teknek/gossip/TenNodeThreeSeedTest.java +++ b/src/test/java/org/apache/gossip/TenNodeThreeSeedTest.java @@ -15,7 +15,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package io.teknek.gossip; +package org.apache.gossip; import io.teknek.tunit.TUnit;