Repository: incubator-ratis
Updated Branches:
  refs/heads/master df538e505 -> 2fb45da94


RATIS-421. Use thirdparty-0.1.0.


Project: http://git-wip-us.apache.org/repos/asf/incubator-ratis/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ratis/commit/2fb45da9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ratis/tree/2fb45da9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ratis/diff/2fb45da9

Branch: refs/heads/master
Commit: 2fb45da948230ca2bc194ed8e41440d1b7b0bcb8
Parents: df538e5
Author: Tsz Wo Nicholas Sze <[email protected]>
Authored: Sat Nov 17 13:57:24 2018 -0800
Committer: Tsz Wo Nicholas Sze <[email protected]>
Committed: Sat Nov 17 13:57:24 2018 -0800

----------------------------------------------------------------------
 pom.xml                      | 4 ++--
 ratis-assembly/pom.xml       | 2 +-
 ratis-client/pom.xml         | 2 +-
 ratis-common/pom.xml         | 2 +-
 ratis-examples/pom.xml       | 2 +-
 ratis-grpc/pom.xml           | 2 +-
 ratis-netty/pom.xml          | 2 +-
 ratis-proto/pom.xml          | 2 +-
 ratis-replicated-map/pom.xml | 2 +-
 ratis-server/pom.xml         | 2 +-
 10 files changed, 11 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ratis/blob/2fb45da9/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 77c54c4..54b6bd1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -176,7 +176,7 @@
     <maven.min.version>3.3.9</maven.min.version>
 
     <!-- Contains all shaded thirdparty dependencies -->
-    <ratis.thirdparty.version>0.1.0-SNAPSHOT</ratis.thirdparty.version>
+    <ratis.thirdparty.version>0.1.0</ratis.thirdparty.version>
 
     <!-- Need these for the protobuf compiler. *MUST* match what is in 
ratis-thirdparty -->
     <shaded.protobuf.version>3.5.0</shaded.protobuf.version>
@@ -311,7 +311,7 @@
 
       <dependency>
         <groupId>org.apache.ratis</groupId>
-        <artifactId>ratis-thirdparty</artifactId>
+        <artifactId>ratis-thirdparty-misc</artifactId>
         <version>${ratis.thirdparty.version}</version>
       </dependency>
 

http://git-wip-us.apache.org/repos/asf/incubator-ratis/blob/2fb45da9/ratis-assembly/pom.xml
----------------------------------------------------------------------
diff --git a/ratis-assembly/pom.xml b/ratis-assembly/pom.xml
index c773793..e6b2fdd 100644
--- a/ratis-assembly/pom.xml
+++ b/ratis-assembly/pom.xml
@@ -136,7 +136,7 @@
     <!-- Intra-project dependencies -->
     <dependency>
       <groupId>org.apache.ratis</groupId>
-      <artifactId>ratis-thirdparty</artifactId>
+      <artifactId>ratis-thirdparty-misc</artifactId>
     </dependency>
     <dependency>
       <artifactId>ratis-proto</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-ratis/blob/2fb45da9/ratis-client/pom.xml
----------------------------------------------------------------------
diff --git a/ratis-client/pom.xml b/ratis-client/pom.xml
index 3e988be..37a3132 100644
--- a/ratis-client/pom.xml
+++ b/ratis-client/pom.xml
@@ -26,7 +26,7 @@
   <dependencies>
     <dependency>
       <groupId>org.apache.ratis</groupId>
-      <artifactId>ratis-thirdparty</artifactId>
+      <artifactId>ratis-thirdparty-misc</artifactId>
     </dependency>
     <dependency>
       <artifactId>ratis-proto</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-ratis/blob/2fb45da9/ratis-common/pom.xml
----------------------------------------------------------------------
diff --git a/ratis-common/pom.xml b/ratis-common/pom.xml
index 2419ee8..a65859a 100644
--- a/ratis-common/pom.xml
+++ b/ratis-common/pom.xml
@@ -26,7 +26,7 @@
   <dependencies>
     <dependency>
       <groupId>org.apache.ratis</groupId>
-      <artifactId>ratis-thirdparty</artifactId>
+      <artifactId>ratis-thirdparty-misc</artifactId>
     </dependency>
     <dependency>
       <groupId>org.apache.ratis</groupId>

http://git-wip-us.apache.org/repos/asf/incubator-ratis/blob/2fb45da9/ratis-examples/pom.xml
----------------------------------------------------------------------
diff --git a/ratis-examples/pom.xml b/ratis-examples/pom.xml
index cf37b6b..817e1b3 100644
--- a/ratis-examples/pom.xml
+++ b/ratis-examples/pom.xml
@@ -26,7 +26,7 @@
   <dependencies>
     <dependency>
       <groupId>org.apache.ratis</groupId>
-      <artifactId>ratis-thirdparty</artifactId>
+      <artifactId>ratis-thirdparty-misc</artifactId>
     </dependency>
     <dependency>
       <artifactId>ratis-proto</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-ratis/blob/2fb45da9/ratis-grpc/pom.xml
----------------------------------------------------------------------
diff --git a/ratis-grpc/pom.xml b/ratis-grpc/pom.xml
index bd46c69..dce1989 100644
--- a/ratis-grpc/pom.xml
+++ b/ratis-grpc/pom.xml
@@ -26,7 +26,7 @@
   <dependencies>
     <dependency>
       <groupId>org.apache.ratis</groupId>
-      <artifactId>ratis-thirdparty</artifactId>
+      <artifactId>ratis-thirdparty-misc</artifactId>
     </dependency>
     <dependency>
       <artifactId>ratis-proto</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-ratis/blob/2fb45da9/ratis-netty/pom.xml
----------------------------------------------------------------------
diff --git a/ratis-netty/pom.xml b/ratis-netty/pom.xml
index 42d8656..e82b017 100644
--- a/ratis-netty/pom.xml
+++ b/ratis-netty/pom.xml
@@ -26,7 +26,7 @@
   <dependencies>
     <dependency>
       <groupId>org.apache.ratis</groupId>
-      <artifactId>ratis-thirdparty</artifactId>
+      <artifactId>ratis-thirdparty-misc</artifactId>
     </dependency>
     <dependency>
       <artifactId>ratis-proto</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-ratis/blob/2fb45da9/ratis-proto/pom.xml
----------------------------------------------------------------------
diff --git a/ratis-proto/pom.xml b/ratis-proto/pom.xml
index ffbfe70..568b703 100644
--- a/ratis-proto/pom.xml
+++ b/ratis-proto/pom.xml
@@ -185,7 +185,7 @@
   <dependencies>
     <dependency>
       <groupId>org.apache.ratis</groupId>
-      <artifactId>ratis-thirdparty</artifactId>
+      <artifactId>ratis-thirdparty-misc</artifactId>
     </dependency>
   </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-ratis/blob/2fb45da9/ratis-replicated-map/pom.xml
----------------------------------------------------------------------
diff --git a/ratis-replicated-map/pom.xml b/ratis-replicated-map/pom.xml
index 1eda796..23e525e 100644
--- a/ratis-replicated-map/pom.xml
+++ b/ratis-replicated-map/pom.xml
@@ -26,7 +26,7 @@
   <dependencies>
     <dependency>
       <groupId>org.apache.ratis</groupId>
-      <artifactId>ratis-thirdparty</artifactId>
+      <artifactId>ratis-thirdparty-misc</artifactId>
     </dependency>
     <dependency>
       <artifactId>ratis-proto</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-ratis/blob/2fb45da9/ratis-server/pom.xml
----------------------------------------------------------------------
diff --git a/ratis-server/pom.xml b/ratis-server/pom.xml
index 1bc4e77..6da59fa 100644
--- a/ratis-server/pom.xml
+++ b/ratis-server/pom.xml
@@ -26,7 +26,7 @@
   <dependencies>
     <dependency>
       <groupId>org.apache.ratis</groupId>
-      <artifactId>ratis-thirdparty</artifactId>
+      <artifactId>ratis-thirdparty-misc</artifactId>
     </dependency>
     <dependency>
       <artifactId>ratis-proto</artifactId>

Reply via email to