You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@omid.apache.org by fp...@apache.org on 2016/06/03 21:27:33 UTC

[06/23] incubator-omid git commit: [OMID-29] Adding Omid prefix to all artifacts

[OMID-29] Adding Omid prefix to all artifacts

Change-Id: I167444e285dd899aa0d981538b784f0adc6f2f26


Project: http://git-wip-us.apache.org/repos/asf/incubator-omid/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-omid/commit/709e0444
Tree: http://git-wip-us.apache.org/repos/asf/incubator-omid/tree/709e0444
Diff: http://git-wip-us.apache.org/repos/asf/incubator-omid/diff/709e0444

Branch: refs/heads/master
Commit: 709e0444b4022346c87ef995d75736370f849fb8
Parents: 110b64f
Author: Igor Katkov <ka...@yahoo-inc.com>
Authored: Thu May 19 15:30:52 2016 -0700
Committer: Igor Katkov <ka...@yahoo-inc.com>
Committed: Thu May 19 15:30:52 2016 -0700

----------------------------------------------------------------------
 benchmarks/pom.xml          | 12 ++++++------
 codahale-metrics/pom.xml    |  6 +++---
 commit-table/pom.xml        |  2 +-
 common/pom.xml              |  2 +-
 examples/pom.xml            | 12 ++++++------
 hbase-client/pom.xml        | 18 +++++++++---------
 hbase-commit-table/pom.xml  | 12 ++++++------
 hbase-common/pom.xml        |  6 +++---
 hbase-coprocessor/pom.xml   | 14 +++++++-------
 hbase-shims/hbase-0/pom.xml |  2 +-
 hbase-shims/hbase-1/pom.xml |  2 +-
 hbase-tools/pom.xml         | 10 +++++-----
 metrics/pom.xml             |  4 ++--
 statemachine/pom.xml        |  2 +-
 timestamp-storage/pom.xml   | 10 +++++-----
 transaction-client/pom.xml  | 12 ++++++------
 tso-server/pom.xml          | 20 ++++++++++----------
 17 files changed, 73 insertions(+), 73 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/709e0444/benchmarks/pom.xml
----------------------------------------------------------------------
diff --git a/benchmarks/pom.xml b/benchmarks/pom.xml
index e32812b..5ea5df5 100644
--- a/benchmarks/pom.xml
+++ b/benchmarks/pom.xml
@@ -8,7 +8,7 @@
         <version>0.8.2.3-SNAPSHOT</version>
     </parent>
 
-    <artifactId>benchmarks</artifactId>
+    <artifactId>omid-benchmarks</artifactId>
     <name>Benchmarks</name>
 
     <dependencies>
@@ -17,22 +17,22 @@
 
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>transaction-client</artifactId>
+            <artifactId>omid-transaction-client</artifactId>
             <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>hbase-commit-table</artifactId>
+            <artifactId>omid-hbase-commit-table</artifactId>
             <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>metrics</artifactId>
+            <artifactId>omid-metrics</artifactId>
             <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>codahale-metrics</artifactId>
+            <artifactId>omid-codahale-metrics</artifactId>
             <version>${project.version}</version>
         </dependency>
 
@@ -115,4 +115,4 @@
 
     </build>
 
-</project>
\ No newline at end of file
+</project>

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/709e0444/codahale-metrics/pom.xml
----------------------------------------------------------------------
diff --git a/codahale-metrics/pom.xml b/codahale-metrics/pom.xml
index 3aa8892..bb6fb9a 100644
--- a/codahale-metrics/pom.xml
+++ b/codahale-metrics/pom.xml
@@ -9,7 +9,7 @@
 
     <modelVersion>4.0.0</modelVersion>
 
-    <artifactId>codahale-metrics</artifactId>
+    <artifactId>omid-codahale-metrics</artifactId>
     <name>Codahale Metrics</name>
 
     <dependencies>
@@ -18,7 +18,7 @@
 
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>metrics</artifactId>
+            <artifactId>omid-metrics</artifactId>
             <version>${project.version}</version>
         </dependency>
 
@@ -62,4 +62,4 @@
 
     </build>
 
-</project>
\ No newline at end of file
+</project>

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/709e0444/commit-table/pom.xml
----------------------------------------------------------------------
diff --git a/commit-table/pom.xml b/commit-table/pom.xml
index dc48d74..d1234b4 100644
--- a/commit-table/pom.xml
+++ b/commit-table/pom.xml
@@ -8,7 +8,7 @@
         <version>0.8.2.3-SNAPSHOT</version>
     </parent>
 
-    <artifactId>commit-table</artifactId>
+    <artifactId>omid-commit-table</artifactId>
     <packaging>jar</packaging>
     <name>Commit Table</name>
 

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/709e0444/common/pom.xml
----------------------------------------------------------------------
diff --git a/common/pom.xml b/common/pom.xml
index 9306936..f20f3f9 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -8,7 +8,7 @@
         <version>0.8.2.3-SNAPSHOT</version>
     </parent>
 
-    <artifactId>common</artifactId>
+    <artifactId>omid-common</artifactId>
     <name>Common</name>
     <packaging>jar</packaging>
 

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/709e0444/examples/pom.xml
----------------------------------------------------------------------
diff --git a/examples/pom.xml b/examples/pom.xml
index 81310fd..e7ca3cb 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -9,7 +9,7 @@
         <version>0.8.2.3-SNAPSHOT</version>
     </parent>
 
-    <artifactId>examples</artifactId>
+    <artifactId>omid-examples</artifactId>
     <name>Omid Client Examples</name>
     <description>Includes some examples showing Omid features</description>
 
@@ -19,13 +19,13 @@
 
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>hbase-client</artifactId>
+            <artifactId>omid-hbase-client</artifactId>
             <version>${project.version}</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>codahale-metrics</artifactId>
+            <artifactId>omid-codahale-metrics</artifactId>
             <version>${project.version}</version>
         </dependency>
         <!-- End of Dependencies on Omid modules -->
@@ -127,7 +127,7 @@
             <dependencies>
                 <dependency>
                     <groupId>org.apache.omid</groupId>
-                    <artifactId>hbase0-shims</artifactId>
+                    <artifactId>omid-hbase0-shims</artifactId>
                     <version>${project.version}</version>
                 </dependency>
             </dependencies>
@@ -138,7 +138,7 @@
             <dependencies>
                 <dependency>
                     <groupId>org.apache.omid</groupId>
-                    <artifactId>hbase1-shims</artifactId>
+                    <artifactId>omid-hbase1-shims</artifactId>
                     <version>${project.version}</version>
                 </dependency>
             </dependencies>
@@ -146,4 +146,4 @@
 
     </profiles>
 
-</project>
\ No newline at end of file
+</project>

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/709e0444/hbase-client/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-client/pom.xml b/hbase-client/pom.xml
index f60a270..8feb869 100644
--- a/hbase-client/pom.xml
+++ b/hbase-client/pom.xml
@@ -8,7 +8,7 @@
         <version>0.8.2.3-SNAPSHOT</version>
     </parent>
 
-    <artifactId>hbase-client</artifactId>
+    <artifactId>omid-hbase-client</artifactId>
     <packaging>jar</packaging>
     <name>HBase Client</name>
     <description>HBase specific implementation of transaction-client module</description>
@@ -19,37 +19,37 @@
 
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>transaction-client</artifactId>
+            <artifactId>omid-transaction-client</artifactId>
             <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>hbase-commit-table</artifactId>
+            <artifactId>omid-hbase-commit-table</artifactId>
             <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>tso-server</artifactId>
+            <artifactId>omid-tso-server</artifactId>
             <version>${project.version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>tso-server</artifactId>
+            <artifactId>omid-tso-server</artifactId>
             <version>${project.version}</version>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>commit-table</artifactId>
+            <artifactId>omid-commit-table</artifactId>
             <version>${project.version}</version>
             <scope>test</scope>
             <classifier>tests</classifier>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>hbase-tools</artifactId>
+            <artifactId>omid-hbase-tools</artifactId>
             <version>${project.version}</version>
             <scope>test</scope>
         </dependency>
@@ -167,7 +167,7 @@
             <dependencies>
                 <dependency>
                     <groupId>org.apache.omid</groupId>
-                    <artifactId>hbase0-shims</artifactId>
+                    <artifactId>omid-hbase0-shims</artifactId>
                     <version>${project.version}</version>
                 </dependency>
             </dependencies>
@@ -178,7 +178,7 @@
             <dependencies>
                 <dependency>
                     <groupId>org.apache.omid</groupId>
-                    <artifactId>hbase1-shims</artifactId>
+                    <artifactId>omid-hbase1-shims</artifactId>
                     <version>${project.version}</version>
                 </dependency>
             </dependencies>

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/709e0444/hbase-commit-table/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-commit-table/pom.xml b/hbase-commit-table/pom.xml
index ba08de1..ce11051 100644
--- a/hbase-commit-table/pom.xml
+++ b/hbase-commit-table/pom.xml
@@ -8,7 +8,7 @@
         <version>0.8.2.3-SNAPSHOT</version>
     </parent>
 
-    <artifactId>hbase-commit-table</artifactId>
+    <artifactId>omid-hbase-commit-table</artifactId>
     <packaging>jar</packaging>
     <name>HBase Commit Table</name>
 
@@ -18,17 +18,17 @@
 
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>commit-table</artifactId>
+            <artifactId>omid-commit-table</artifactId>
             <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>common</artifactId>
+            <artifactId>omid-common</artifactId>
             <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>hbase-common</artifactId>
+            <artifactId>omid-hbase-common</artifactId>
             <version>${project.version}</version>
         </dependency>
 
@@ -146,7 +146,7 @@
             <dependencies>
                 <dependency>
                     <groupId>org.apache.omid</groupId>
-                    <artifactId>hbase0-shims</artifactId>
+                    <artifactId>omid-hbase0-shims</artifactId>
                     <version>${project.version}</version>
                 </dependency>
             </dependencies>
@@ -157,7 +157,7 @@
             <dependencies>
                 <dependency>
                     <groupId>org.apache.omid</groupId>
-                    <artifactId>hbase1-shims</artifactId>
+                    <artifactId>omid-hbase1-shims</artifactId>
                     <version>${project.version}</version>
                 </dependency>
             </dependencies>

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/709e0444/hbase-common/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-common/pom.xml b/hbase-common/pom.xml
index 642cabf..a398833 100644
--- a/hbase-common/pom.xml
+++ b/hbase-common/pom.xml
@@ -8,7 +8,7 @@
         <version>0.8.2.3-SNAPSHOT</version>
     </parent>
 
-    <artifactId>hbase-common</artifactId>
+    <artifactId>omid-hbase-common</artifactId>
     <name>HBase Common</name>
     <packaging>jar</packaging>
 
@@ -87,7 +87,7 @@
             <dependencies>
                 <dependency>
                     <groupId>org.apache.omid</groupId>
-                    <artifactId>hbase0-shims</artifactId>
+                    <artifactId>omid-hbase0-shims</artifactId>
                     <version>${project.version}</version>
                 </dependency>
             </dependencies>
@@ -98,7 +98,7 @@
             <dependencies>
                 <dependency>
                     <groupId>org.apache.omid</groupId>
-                    <artifactId>hbase1-shims</artifactId>
+                    <artifactId>omid-hbase1-shims</artifactId>
                     <version>${project.version}</version>
                 </dependency>
             </dependencies>

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/709e0444/hbase-coprocessor/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-coprocessor/pom.xml b/hbase-coprocessor/pom.xml
index 7a7e4f2..79fc36f 100644
--- a/hbase-coprocessor/pom.xml
+++ b/hbase-coprocessor/pom.xml
@@ -8,7 +8,7 @@
         <version>0.8.2.3-SNAPSHOT</version>
     </parent>
 
-    <artifactId>hbase-coprocessor</artifactId>
+    <artifactId>omid-hbase-coprocessor</artifactId>
     <packaging>jar</packaging>
     <name>HBase Coprocessors</name>
 
@@ -18,24 +18,24 @@
 
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>hbase-commit-table</artifactId>
+            <artifactId>omid-hbase-commit-table</artifactId>
             <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>tso-server</artifactId>
+            <artifactId>omid-tso-server</artifactId>
             <version>${project.version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>hbase-client</artifactId>
+            <artifactId>omid-hbase-client</artifactId>
             <version>${project.version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>tso-server</artifactId>
+            <artifactId>omid-tso-server</artifactId>
             <version>${project.version}</version>
             <type>test-jar</type>
             <scope>test</scope>
@@ -152,7 +152,7 @@
             <dependencies>
                 <dependency>
                     <groupId>org.apache.omid</groupId>
-                    <artifactId>hbase0-shims</artifactId>
+                    <artifactId>omid-hbase0-shims</artifactId>
                     <version>${project.version}</version>
                 </dependency>
             </dependencies>
@@ -163,7 +163,7 @@
             <dependencies>
                 <dependency>
                     <groupId>org.apache.omid</groupId>
-                    <artifactId>hbase1-shims</artifactId>
+                    <artifactId>omid-hbase1-shims</artifactId>
                     <version>${project.version}</version>
                 </dependency>
             </dependencies>

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/709e0444/hbase-shims/hbase-0/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-shims/hbase-0/pom.xml b/hbase-shims/hbase-0/pom.xml
index a2b5925..59a9abb 100644
--- a/hbase-shims/hbase-0/pom.xml
+++ b/hbase-shims/hbase-0/pom.xml
@@ -8,7 +8,7 @@
         <version>0.8.2.3-SNAPSHOT</version>
     </parent>
 
-    <artifactId>hbase0-shims</artifactId>
+    <artifactId>omid-hbase0-shims</artifactId>
     <name>Shims layer for HBase 0.x</name>
     <packaging>jar</packaging>
 

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/709e0444/hbase-shims/hbase-1/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-shims/hbase-1/pom.xml b/hbase-shims/hbase-1/pom.xml
index fa447cb..d059d3f 100644
--- a/hbase-shims/hbase-1/pom.xml
+++ b/hbase-shims/hbase-1/pom.xml
@@ -8,7 +8,7 @@
         <version>0.8.2.3-SNAPSHOT</version>
     </parent>
 
-    <artifactId>hbase1-shims</artifactId>
+    <artifactId>omid-hbase1-shims</artifactId>
     <name>Shims layer for HBase 1.x</name>
     <packaging>jar</packaging>
 

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/709e0444/hbase-tools/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-tools/pom.xml b/hbase-tools/pom.xml
index fa7d6d3..8526023 100644
--- a/hbase-tools/pom.xml
+++ b/hbase-tools/pom.xml
@@ -8,7 +8,7 @@
         <version>0.8.2.3-SNAPSHOT</version>
     </parent>
 
-    <artifactId>hbase-tools</artifactId>
+    <artifactId>omid-hbase-tools</artifactId>
     <name>HBase tools</name>
     <packaging>jar</packaging>
 
@@ -18,13 +18,13 @@
 
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>hbase-commit-table</artifactId>
+            <artifactId>omid-hbase-commit-table</artifactId>
             <version>${project.version}</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>timestamp-storage</artifactId>
+            <artifactId>omid-timestamp-storage</artifactId>
             <version>${project.version}</version>
         </dependency>
         <!-- End of Dependencies on Omid modules -->
@@ -103,7 +103,7 @@
             <dependencies>
                 <dependency>
                     <groupId>org.apache.omid</groupId>
-                    <artifactId>hbase0-shims</artifactId>
+                    <artifactId>omid-hbase0-shims</artifactId>
                     <version>${project.version}</version>
                 </dependency>
             </dependencies>
@@ -114,7 +114,7 @@
             <dependencies>
                 <dependency>
                     <groupId>org.apache.omid</groupId>
-                    <artifactId>hbase1-shims</artifactId>
+                    <artifactId>omid-hbase1-shims</artifactId>
                     <version>${project.version}</version>
                 </dependency>
             </dependencies>

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/709e0444/metrics/pom.xml
----------------------------------------------------------------------
diff --git a/metrics/pom.xml b/metrics/pom.xml
index 3334c83..f99c5cf 100644
--- a/metrics/pom.xml
+++ b/metrics/pom.xml
@@ -9,7 +9,7 @@
         <version>0.8.2.3-SNAPSHOT</version>
     </parent>
 
-    <artifactId>metrics</artifactId>
+    <artifactId>omid-metrics</artifactId>
     <name>Metrics</name>
 
     <dependencies>
@@ -67,4 +67,4 @@
 
     </build>
 
-</project>
\ No newline at end of file
+</project>

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/709e0444/statemachine/pom.xml
----------------------------------------------------------------------
diff --git a/statemachine/pom.xml b/statemachine/pom.xml
index 6369678..3ea5ee4 100644
--- a/statemachine/pom.xml
+++ b/statemachine/pom.xml
@@ -9,7 +9,7 @@
     </parent>
 
     <name>State Machine</name>
-    <artifactId>statemachine</artifactId>
+    <artifactId>omid-statemachine</artifactId>
     <packaging>jar</packaging>
 
     <dependencies>

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/709e0444/timestamp-storage/pom.xml
----------------------------------------------------------------------
diff --git a/timestamp-storage/pom.xml b/timestamp-storage/pom.xml
index 3236aeb..37bbe6e 100644
--- a/timestamp-storage/pom.xml
+++ b/timestamp-storage/pom.xml
@@ -8,7 +8,7 @@
         <version>0.8.2.3-SNAPSHOT</version>
     </parent>
 
-    <artifactId>timestamp-storage</artifactId>
+    <artifactId>omid-timestamp-storage</artifactId>
     <name>Timestamp Storage</name>
     <packaging>jar</packaging>
 
@@ -18,12 +18,12 @@
 
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>hbase-common</artifactId>
+            <artifactId>omid-hbase-common</artifactId>
             <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>common</artifactId>
+            <artifactId>omid-common</artifactId>
             <version>${project.version}</version>
         </dependency>
 
@@ -133,7 +133,7 @@
             <dependencies>
                 <dependency>
                     <groupId>org.apache.omid</groupId>
-                    <artifactId>hbase0-shims</artifactId>
+                    <artifactId>omid-hbase0-shims</artifactId>
                     <version>${project.version}</version>
                 </dependency>
             </dependencies>
@@ -144,7 +144,7 @@
             <dependencies>
                 <dependency>
                     <groupId>org.apache.omid</groupId>
-                    <artifactId>hbase1-shims</artifactId>
+                    <artifactId>omid-hbase1-shims</artifactId>
                     <version>${project.version}</version>
                 </dependency>
             </dependencies>

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/709e0444/transaction-client/pom.xml
----------------------------------------------------------------------
diff --git a/transaction-client/pom.xml b/transaction-client/pom.xml
index 48afeb6..098e0d8 100644
--- a/transaction-client/pom.xml
+++ b/transaction-client/pom.xml
@@ -8,7 +8,7 @@
         <version>0.8.2.3-SNAPSHOT</version>
     </parent>
 
-    <artifactId>transaction-client</artifactId>
+    <artifactId>omid-transaction-client</artifactId>
     <packaging>jar</packaging>
     <name>Transaction Client</name>
 
@@ -18,27 +18,27 @@
 
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>common</artifactId>
+            <artifactId>omid-common</artifactId>
             <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>statemachine</artifactId>
+            <artifactId>omid-statemachine</artifactId>
             <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>commit-table</artifactId>
+            <artifactId>omid-commit-table</artifactId>
             <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>metrics</artifactId>
+            <artifactId>omid-metrics</artifactId>
             <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>commit-table</artifactId>
+            <artifactId>omid-commit-table</artifactId>
             <version>${project.version}</version>
             <scope>test</scope>
             <classifier>tests</classifier>

http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/709e0444/tso-server/pom.xml
----------------------------------------------------------------------
diff --git a/tso-server/pom.xml b/tso-server/pom.xml
index 1968f8e..e24cf16 100644
--- a/tso-server/pom.xml
+++ b/tso-server/pom.xml
@@ -8,7 +8,7 @@
         <version>0.8.2.3-SNAPSHOT</version>
     </parent>
 
-    <artifactId>tso-server</artifactId>
+    <artifactId>omid-tso-server</artifactId>
     <packaging>jar</packaging>
     <name>TSO and TO Servers</name>
     <description>Omid Transaction Status Oracle server and Timestamp Oracle</description>
@@ -19,44 +19,44 @@
 
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>commit-table</artifactId>
+            <artifactId>omid-commit-table</artifactId>
             <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>timestamp-storage</artifactId>
+            <artifactId>omid-timestamp-storage</artifactId>
             <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>metrics</artifactId>
+            <artifactId>omid-metrics</artifactId>
             <version>${project.version}</version>
         </dependency>
         <!-- The codahale-related dependency is added here just to include the jar in the final
         tar.gz package assembled. -->
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>codahale-metrics</artifactId>
+            <artifactId>omid-codahale-metrics</artifactId>
             <version>${project.version}</version>
         </dependency>
         <!-- The hbase-related dependency is added here just to include the jar in the final tar.gz package assembled.
         The hbase tools are handy to create the required Omid tables from the same script that starts the TSO server -->
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>hbase-tools</artifactId>
+            <artifactId>omid-hbase-tools</artifactId>
             <version>${project.version}</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>commit-table</artifactId>
+            <artifactId>omid-commit-table</artifactId>
             <version>${project.version}</version>
             <scope>test</scope>
             <classifier>tests</classifier>
         </dependency>
         <dependency>
             <groupId>org.apache.omid</groupId>
-            <artifactId>transaction-client</artifactId>
+            <artifactId>omid-transaction-client</artifactId>
             <version>${project.version}</version>
             <scope>test</scope>
         </dependency>
@@ -282,7 +282,7 @@
             <dependencies>
                 <dependency>
                     <groupId>org.apache.omid</groupId>
-                    <artifactId>hbase0-shims</artifactId>
+                    <artifactId>omid-hbase0-shims</artifactId>
                     <version>${project.version}</version>
                 </dependency>
             </dependencies>
@@ -293,7 +293,7 @@
             <dependencies>
                 <dependency>
                     <groupId>org.apache.omid</groupId>
-                    <artifactId>hbase1-shims</artifactId>
+                    <artifactId>omid-hbase1-shims</artifactId>
                     <version>${project.version}</version>
                 </dependency>
             </dependencies>