You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@distributedlog.apache.org by si...@apache.org on 2017/01/07 00:51:09 UTC

incubator-distributedlog git commit: DL-176: Rename the DL artifact from com.twitter to org.apache.distributedlog

Repository: incubator-distributedlog
Updated Branches:
  refs/heads/master 859b342b2 -> 1bb44e776


DL-176: Rename the DL artifact from com.twitter to org.apache.distributedlog

Author: Sijie Guo <si...@twitter.com>

Reviewers: Dave Rusek <dr...@apache.org>, Leigh Stewart <ls...@apache.org>

Closes #102 from sijie/sijie/fix_pom_file_layout


Project: http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/commit/1bb44e77
Tree: http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/tree/1bb44e77
Diff: http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/diff/1bb44e77

Branch: refs/heads/master
Commit: 1bb44e776775636fdc34b5e88aad2a93651f4fe3
Parents: 859b342
Author: Sijie Guo <si...@twitter.com>
Authored: Fri Jan 6 16:51:06 2017 -0800
Committer: Sijie Guo <si...@twitter.com>
Committed: Fri Jan 6 16:51:06 2017 -0800

----------------------------------------------------------------------
 distributedlog-benchmark/bin/dbench                     |  6 +++---
 distributedlog-benchmark/pom.xml                        | 10 +++++-----
 distributedlog-build-tools/pom.xml                      |  2 +-
 distributedlog-client/pom.xml                           |  8 ++++----
 distributedlog-core/bin/dlog                            |  6 +++---
 distributedlog-core/pom.xml                             |  6 +++---
 distributedlog-protocol/pom.xml                         |  4 ++--
 distributedlog-service/bin/dlog                         | 10 +++++-----
 distributedlog-service/pom.xml                          | 12 ++++++------
 distributedlog-tutorials/distributedlog-basic/pom.xml   |  8 ++++----
 distributedlog-tutorials/distributedlog-kafka/pom.xml   |  6 +++---
 .../distributedlog-mapreduce/pom.xml                    |  8 ++++----
 .../distributedlog-messaging/pom.xml                    |  8 ++++----
 distributedlog-tutorials/pom.xml                        |  2 +-
 pom.xml                                                 |  2 +-
 15 files changed, 49 insertions(+), 49 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/1bb44e77/distributedlog-benchmark/bin/dbench
----------------------------------------------------------------------
diff --git a/distributedlog-benchmark/bin/dbench b/distributedlog-benchmark/bin/dbench
index 1baa21c..afcca62 100755
--- a/distributedlog-benchmark/bin/dbench
+++ b/distributedlog-benchmark/bin/dbench
@@ -76,7 +76,7 @@ case "${COMMAND}" in
     --change-interval ${CHANGE_RATE_INTERVAL} \\
     """
     BENCH_ARGS="${BENCH_ARGS} \\ ${BENCH_WRITE_ARGS} \\ --mode dlwrite \\"
-    exec java $OPTS $JMX_ARGS com.twitter.distributedlog.benchmark.Benchmarker $BENCH_ARGS $@
+    exec java $OPTS $JMX_ARGS org.apache.distributedlog.benchmark.Benchmarker $BENCH_ARGS $@
     ;;
   write)
     BENCH_WRITE_ARGS="""
@@ -88,7 +88,7 @@ case "${COMMAND}" in
     --finagle-name inet!localhost:8000 \\
     """
     BENCH_ARGS="${BENCH_ARGS} \\ ${BENCH_WRITE_ARGS} \\ --mode write \\"
-    exec java $OPTS $JMX_ARGS com.twitter.distributedlog.benchmark.Benchmarker $BENCH_ARGS $@
+    exec java $OPTS $JMX_ARGS org.apache.distributedlog.benchmark.Benchmarker $BENCH_ARGS $@
     ;;
   read)
     BENCH_READ_ARGS="""
@@ -98,7 +98,7 @@ case "${COMMAND}" in
     --finagle-name inet!localhost:8000 \\
     """
     BENCH_ARGS="${BENCH_ARGS} \\ ${BENCH_READ_ARGS} \\ --mode read \\"
-    exec java $OPTS $JMX_ARGS com.twitter.distributedlog.benchmark.Benchmarker $BENCH_ARGS $@
+    exec java $OPTS $JMX_ARGS org.apache.distributedlog.benchmark.Benchmarker $BENCH_ARGS $@
     ;;
   help)
     usage

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/1bb44e77/distributedlog-benchmark/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-benchmark/pom.xml b/distributedlog-benchmark/pom.xml
index bb4d3b9..b3ed0f0 100644
--- a/distributedlog-benchmark/pom.xml
+++ b/distributedlog-benchmark/pom.xml
@@ -19,7 +19,7 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
-    <groupId>com.twitter</groupId>
+    <groupId>org.apache.distributedlog</groupId>
     <artifactId>distributedlog</artifactId>
     <version>0.4.0-incubating-SNAPSHOT</version>
   </parent>
@@ -27,12 +27,12 @@
   <name>Apache DistributedLog :: Benchmark</name>
   <dependencies>
     <dependency>
-      <groupId>com.twitter</groupId>
+      <groupId>org.apache.distributedlog</groupId>
       <artifactId>distributedlog-client</artifactId>
       <version>${project.parent.version}</version>
     </dependency>
     <dependency>
-      <groupId>com.twitter</groupId>
+      <groupId>org.apache.distributedlog</groupId>
       <artifactId>distributedlog-service</artifactId>
       <version>${project.parent.version}</version>
     </dependency>
@@ -42,7 +42,7 @@
       <version>${birdcage.sha}</version>
     </dependency>
     <dependency>
-      <groupId>com.twitter</groupId>
+      <groupId>org.apache.distributedlog</groupId>
       <artifactId>distributedlog-core</artifactId>
       <version>${project.parent.version}</version>
       <scope>test</scope>
@@ -123,7 +123,7 @@
             <version>6.19</version>
           </dependency>
           <dependency>
-            <groupId>com.twitter</groupId>
+            <groupId>org.apache.distributedlog</groupId>
             <artifactId>distributedlog-build-tools</artifactId>
             <version>${project.version}</version>
           </dependency>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/1bb44e77/distributedlog-build-tools/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-build-tools/pom.xml b/distributedlog-build-tools/pom.xml
index 45b0b81..3c259a2 100644
--- a/distributedlog-build-tools/pom.xml
+++ b/distributedlog-build-tools/pom.xml
@@ -19,7 +19,7 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
-    <groupId>com.twitter</groupId>
+    <groupId>org.apache.distributedlog</groupId>
     <artifactId>distributedlog</artifactId>
     <version>0.4.0-incubating-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/1bb44e77/distributedlog-client/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-client/pom.xml b/distributedlog-client/pom.xml
index f09caf1..f8243a4 100644
--- a/distributedlog-client/pom.xml
+++ b/distributedlog-client/pom.xml
@@ -19,7 +19,7 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
-    <groupId>com.twitter</groupId>
+    <groupId>org.apache.distributedlog</groupId>
     <artifactId>distributedlog</artifactId>
     <version>0.4.0-incubating-SNAPSHOT</version>
   </parent>
@@ -27,7 +27,7 @@
   <name>Apache DistributedLog :: Proxy Client</name>
   <dependencies>
     <dependency>
-      <groupId>com.twitter</groupId>
+      <groupId>org.apache.distributedlog</groupId>
       <artifactId>distributedlog-protocol</artifactId>
       <version>${project.parent.version}</version>
     </dependency>
@@ -86,7 +86,7 @@
       <scope>test</scope>
     </dependency> 
     <dependency>
-      <groupId>com.twitter</groupId>
+      <groupId>org.apache.distributedlog</groupId>
       <artifactId>distributedlog-protocol</artifactId>
       <version>${project.parent.version}</version>
       <type>test-jar</type>
@@ -153,7 +153,7 @@
             <version>6.19</version>
           </dependency>
           <dependency>
-            <groupId>com.twitter</groupId>
+            <groupId>org.apache.distributedlog</groupId>
             <artifactId>distributedlog-build-tools</artifactId>
             <version>${project.version}</version>
           </dependency>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/1bb44e77/distributedlog-core/bin/dlog
----------------------------------------------------------------------
diff --git a/distributedlog-core/bin/dlog b/distributedlog-core/bin/dlog
index 6632fd0..bf48148 100755
--- a/distributedlog-core/bin/dlog
+++ b/distributedlog-core/bin/dlog
@@ -56,13 +56,13 @@ shift
 
 case "${COMMAND}" in
   local)
-    exec java $OPTS $JMX_ARGS com.twitter.distributedlog.LocalDLMEmulator $@
+    exec java $OPTS $JMX_ARGS org.apache.distributedlog.LocalDLMEmulator $@
     ;;
   tool)
-    exec java $OPTS com.twitter.distributedlog.tools.Tool com.twitter.distributedlog.tools.DistributedLogTool $@
+    exec java $OPTS org.apache.distributedlog.tools.Tool org.apache.distributedlog.tools.DistributedLogTool $@
     ;;
   admin)
-    exec java $OPTS com.twitter.distributedlog.tools.Tool com.twitter.distributedlog.admin.DistributedLogAdmin $@
+    exec java $OPTS org.apache.distributedlog.tools.Tool org.apache.distributedlog.admin.DistributedLogAdmin $@
     ;;
   help)
     usage

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/1bb44e77/distributedlog-core/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-core/pom.xml b/distributedlog-core/pom.xml
index c4bfa8f..ead101d 100644
--- a/distributedlog-core/pom.xml
+++ b/distributedlog-core/pom.xml
@@ -19,7 +19,7 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
-    <groupId>com.twitter</groupId>
+    <groupId>org.apache.distributedlog</groupId>
     <artifactId>distributedlog</artifactId>
     <version>0.4.0-incubating-SNAPSHOT</version>
   </parent>
@@ -130,7 +130,7 @@
       <version>1.1</version>
     </dependency>
     <dependency>
-      <groupId>com.twitter</groupId>
+      <groupId>org.apache.distributedlog</groupId>
       <artifactId>distributedlog-protocol</artifactId>
       <version>${project.parent.version}</version>
     </dependency>
@@ -146,7 +146,7 @@
       <scope>test</scope>
     </dependency> 
     <dependency>
-      <groupId>com.twitter</groupId>
+      <groupId>org.apache.distributedlog</groupId>
       <artifactId>distributedlog-protocol</artifactId>
       <version>${project.parent.version}</version>
       <type>test-jar</type>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/1bb44e77/distributedlog-protocol/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-protocol/pom.xml b/distributedlog-protocol/pom.xml
index 5e55482..d047e3a 100644
--- a/distributedlog-protocol/pom.xml
+++ b/distributedlog-protocol/pom.xml
@@ -19,7 +19,7 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
-    <groupId>com.twitter</groupId>
+    <groupId>org.apache.distributedlog</groupId>
     <artifactId>distributedlog</artifactId>
     <version>0.4.0-incubating-SNAPSHOT</version>
   </parent>
@@ -136,7 +136,7 @@
             <version>6.19</version>
           </dependency>
           <dependency>
-            <groupId>com.twitter</groupId>
+            <groupId>org.apache.distributedlog</groupId>
             <artifactId>distributedlog-build-tools</artifactId>
             <version>${project.version}</version>
           </dependency>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/1bb44e77/distributedlog-service/bin/dlog
----------------------------------------------------------------------
diff --git a/distributedlog-service/bin/dlog b/distributedlog-service/bin/dlog
index 5a11611..30e8d38 100755
--- a/distributedlog-service/bin/dlog
+++ b/distributedlog-service/bin/dlog
@@ -57,19 +57,19 @@ shift
 
 case "${COMMAND}" in
   local)
-    exec java $OPTS $JMX_ARGS com.twitter.distributedlog.LocalDLMEmulator $@
+    exec java $OPTS $JMX_ARGS org.apache.distributedlog.LocalDLMEmulator $@
     ;;
   tool)
-    exec java $OPTS com.twitter.distributedlog.tools.Tool com.twitter.distributedlog.tools.DistributedLogTool $@
+    exec java $OPTS org.apache.distributedlog.tools.Tool org.apache.distributedlog.tools.DistributedLogTool $@
     ;;
   proxy_tool)
-    exec java $OPTS com.twitter.distributedlog.tools.Tool com.twitter.distributedlog.service.tools.ProxyTool $@
+    exec java $OPTS org.apache.distributedlog.tools.Tool org.apache.distributedlog.service.tools.ProxyTool $@
     ;;
   balancer)
-    exec java $OPTS com.twitter.distributedlog.tools.Tool com.twitter.distributedlog.service.balancer.BalancerTool $@
+    exec java $OPTS org.apache.distributedlog.tools.Tool org.apache.distributedlog.service.balancer.BalancerTool $@
     ;;
   admin)
-    exec java $OPTS com.twitter.distributedlog.tools.Tool com.twitter.distributedlog.admin.DistributedLogAdmin $@
+    exec java $OPTS org.apache.distributedlog.tools.Tool org.apache.distributedlog.admin.DistributedLogAdmin $@
     ;;
   zkshell)
     exec java $OPTS org.apache.zookeeper.ZooKeeperMain -server $@

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/1bb44e77/distributedlog-service/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-service/pom.xml b/distributedlog-service/pom.xml
index 4c155e3..6843e7a 100644
--- a/distributedlog-service/pom.xml
+++ b/distributedlog-service/pom.xml
@@ -19,7 +19,7 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
-    <groupId>com.twitter</groupId>
+    <groupId>org.apache.distributedlog</groupId>
     <artifactId>distributedlog</artifactId>
     <version>0.4.0-incubating-SNAPSHOT</version>
   </parent>
@@ -27,7 +27,7 @@
   <name>Apache DistributedLog :: Proxy Service</name>
   <dependencies>
     <dependency>
-      <groupId>com.twitter</groupId>
+      <groupId>org.apache.distributedlog</groupId>
       <artifactId>distributedlog-client</artifactId>
       <version>${project.parent.version}</version>
       <exclusions>
@@ -38,7 +38,7 @@
       </exclusions>
     </dependency>
     <dependency>
-      <groupId>com.twitter</groupId>
+      <groupId>org.apache.distributedlog</groupId>
       <artifactId>distributedlog-core</artifactId>
       <version>${project.parent.version}</version>
     </dependency>
@@ -53,7 +53,7 @@
       <version>${birdcage.sha}</version>
     </dependency>
     <dependency>
-      <groupId>com.twitter</groupId>
+      <groupId>org.apache.distributedlog</groupId>
       <artifactId>distributedlog-core</artifactId>
       <version>${project.parent.version}</version>
       <scope>test</scope>
@@ -140,7 +140,7 @@
       </exclusions>
     </dependency>
     <dependency>
-      <groupId>com.twitter</groupId>
+      <groupId>org.apache.distributedlog</groupId>
       <artifactId>distributedlog-protocol</artifactId>
       <version>${project.parent.version}</version>
       <type>test-jar</type>
@@ -232,7 +232,7 @@
             <version>6.19</version>
           </dependency>
           <dependency>
-            <groupId>com.twitter</groupId>
+            <groupId>org.apache.distributedlog</groupId>
             <artifactId>distributedlog-build-tools</artifactId>
             <version>${project.version}</version>
           </dependency>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/1bb44e77/distributedlog-tutorials/distributedlog-basic/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-tutorials/distributedlog-basic/pom.xml b/distributedlog-tutorials/distributedlog-basic/pom.xml
index 6cb412f..da1ae45 100644
--- a/distributedlog-tutorials/distributedlog-basic/pom.xml
+++ b/distributedlog-tutorials/distributedlog-basic/pom.xml
@@ -20,11 +20,11 @@
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>distributedlog</artifactId>
-    <groupId>com.twitter</groupId>
+    <groupId>org.apache.distributedlog</groupId>
     <version>0.4.0-incubating-SNAPSHOT</version>
     <relativePath>../..</relativePath>
   </parent>
-  <groupId>com.twitter</groupId>
+  <groupId>org.apache.distributedlog</groupId>
   <artifactId>distributedlog-basic</artifactId>
   <name>Apache DistributedLog :: Tutorials :: Basics</name>
   <url>http://maven.apache.org</url>
@@ -34,12 +34,12 @@
   </properties>
   <dependencies>
     <dependency>
-      <groupId>com.twitter</groupId>
+      <groupId>org.apache.distributedlog</groupId>
       <artifactId>distributedlog-core</artifactId>
       <version>${project.parent.version}</version>
     </dependency>
     <dependency>
-      <groupId>com.twitter</groupId>
+      <groupId>org.apache.distributedlog</groupId>
       <artifactId>distributedlog-client</artifactId>
       <version>${project.parent.version}</version>
       <exclusions>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/1bb44e77/distributedlog-tutorials/distributedlog-kafka/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-tutorials/distributedlog-kafka/pom.xml b/distributedlog-tutorials/distributedlog-kafka/pom.xml
index 843ac70..3c0f460 100644
--- a/distributedlog-tutorials/distributedlog-kafka/pom.xml
+++ b/distributedlog-tutorials/distributedlog-kafka/pom.xml
@@ -20,11 +20,11 @@
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>distributedlog</artifactId>
-    <groupId>com.twitter</groupId>
+    <groupId>org.apache.distributedlog</groupId>
     <version>0.4.0-incubating-SNAPSHOT</version>
     <relativePath>../..</relativePath>
   </parent>
-  <groupId>com.twitter</groupId>
+  <groupId>org.apache.distributedlog</groupId>
   <artifactId>distributedlog-kafka</artifactId>
   <name>Apache DistributedLog :: Tutorials :: Kafka Tutorial</name>
   <url>http://maven.apache.org</url>
@@ -34,7 +34,7 @@
   </properties>
   <dependencies>
     <dependency>
-      <groupId>com.twitter</groupId>
+      <groupId>org.apache.distributedlog</groupId>
       <artifactId>distributedlog-messaging</artifactId>
       <version>${project.parent.version}</version>
     </dependency>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/1bb44e77/distributedlog-tutorials/distributedlog-mapreduce/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-tutorials/distributedlog-mapreduce/pom.xml b/distributedlog-tutorials/distributedlog-mapreduce/pom.xml
index 1f04bfc..67e5444 100644
--- a/distributedlog-tutorials/distributedlog-mapreduce/pom.xml
+++ b/distributedlog-tutorials/distributedlog-mapreduce/pom.xml
@@ -20,11 +20,11 @@
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>distributedlog</artifactId>
-    <groupId>com.twitter</groupId>
+    <groupId>org.apache.distributedlog</groupId>
     <version>0.4.0-incubating-SNAPSHOT</version>
     <relativePath>../..</relativePath>
   </parent>
-  <groupId>com.twitter</groupId>
+  <groupId>org.apache.distributedlog</groupId>
   <artifactId>distributedlog-mapreduce</artifactId>
   <name>Apache DistributedLog :: Tutorials :: MapReduce Tutorial</name>
   <url>http://maven.apache.org</url>
@@ -34,12 +34,12 @@
   </properties>
   <dependencies>
     <dependency>
-      <groupId>com.twitter</groupId>
+      <groupId>org.apache.distributedlog</groupId>
       <artifactId>distributedlog-core</artifactId>
       <version>${project.parent.version}</version>
     </dependency>
     <dependency>
-      <groupId>com.twitter</groupId>
+      <groupId>org.apache.distributedlog</groupId>
       <artifactId>distributedlog-client</artifactId>
       <version>${project.parent.version}</version>
     </dependency>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/1bb44e77/distributedlog-tutorials/distributedlog-messaging/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-tutorials/distributedlog-messaging/pom.xml b/distributedlog-tutorials/distributedlog-messaging/pom.xml
index 95fe2ac..68e4629 100644
--- a/distributedlog-tutorials/distributedlog-messaging/pom.xml
+++ b/distributedlog-tutorials/distributedlog-messaging/pom.xml
@@ -20,11 +20,11 @@
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <artifactId>distributedlog</artifactId>
-    <groupId>com.twitter</groupId>
+    <groupId>org.apache.distributedlog</groupId>
     <version>0.4.0-incubating-SNAPSHOT</version>
     <relativePath>../..</relativePath>
   </parent>
-  <groupId>com.twitter</groupId>
+  <groupId>org.apache.distributedlog</groupId>
   <artifactId>distributedlog-messaging</artifactId>
   <name>Apache DistributedLog :: Tutorials :: Messaging Tutorial</name>
   <url>http://maven.apache.org</url>
@@ -34,12 +34,12 @@
   </properties>
   <dependencies>
     <dependency>
-      <groupId>com.twitter</groupId>
+      <groupId>org.apache.distributedlog</groupId>
       <artifactId>distributedlog-core</artifactId>
       <version>${project.parent.version}</version>
     </dependency>
     <dependency>
-      <groupId>com.twitter</groupId>
+      <groupId>org.apache.distributedlog</groupId>
       <artifactId>distributedlog-client</artifactId>
       <version>${project.parent.version}</version>
       <exclusions>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/1bb44e77/distributedlog-tutorials/pom.xml
----------------------------------------------------------------------
diff --git a/distributedlog-tutorials/pom.xml b/distributedlog-tutorials/pom.xml
index 50b0d48..b610f76 100644
--- a/distributedlog-tutorials/pom.xml
+++ b/distributedlog-tutorials/pom.xml
@@ -20,7 +20,7 @@
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
                       http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <parent>
-    <groupId>com.twitter</groupId>
+    <groupId>org.apache.distributedlog</groupId>
     <artifactId>distributedlog</artifactId>
     <version>0.4.0-incubating-SNAPSHOT</version>
   </parent>

http://git-wip-us.apache.org/repos/asf/incubator-distributedlog/blob/1bb44e77/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 423a8db..977026b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
     <artifactId>apache</artifactId>
     <version>17</version>
   </parent>
-  <groupId>com.twitter</groupId>
+  <groupId>org.apache.distributedlog</groupId>
   <artifactId>distributedlog</artifactId>
   <packaging>pom</packaging>
   <version>0.4.0-incubating-SNAPSHOT</version>