You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@omid.apache.org by yo...@apache.org on 2019/01/20 10:21:59 UTC

[incubator-omid] branch master updated: change version to 1.1.0-SNAPSHOT in hbase-shims:hbase-2 pom

This is an automated email from the ASF dual-hosted git repository.

yonigo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-omid.git


The following commit(s) were added to refs/heads/master by this push:
     new b7e005d  change version to 1.1.0-SNAPSHOT in hbase-shims:hbase-2 pom
b7e005d is described below

commit b7e005d41aa5c7421ddc77e0082b26c8bd21b207
Author: Yonatan Gottesman <yo...@gmail.com>
AuthorDate: Sun Jan 20 12:10:29 2019 +0200

    change version to 1.1.0-SNAPSHOT in hbase-shims:hbase-2 pom
---
 hbase-shims/hbase-2/pom.xml | 33 ++++++++++++++++++++++++++-------
 1 file changed, 26 insertions(+), 7 deletions(-)

diff --git a/hbase-shims/hbase-2/pom.xml b/hbase-shims/hbase-2/pom.xml
index 0ceed1c..2f60a9e 100644
--- a/hbase-shims/hbase-2/pom.xml
+++ b/hbase-shims/hbase-2/pom.xml
@@ -1,13 +1,26 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<!--
+  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.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+
     <parent>
-        <artifactId>omid-shims-aggregator</artifactId>
         <groupId>org.apache.omid</groupId>
-        <version>1.0.0-SNAPSHOT</version>
+        <artifactId>omid-shims-aggregator</artifactId>
+        <version>1.1.0-SNAPSHOT</version>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
 
     <artifactId>${shims2.artifactId}</artifactId>
     <name>Shims layer for HBase 2.x</name>
@@ -17,12 +30,18 @@
         <hbase.version>${hbase2.version}</hbase.version>
     </properties>
 
-
     <dependencies>
+
+        <!-- Dependencies on Omid modules -->
+
         <dependency>
             <groupId>org.apache.hbase</groupId>
             <artifactId>hbase-endpoint</artifactId>
             <version>${hbase2.version}</version>
         </dependency>
+
+        <!-- End of Dependencies on Omid modules -->
+
     </dependencies>
+
 </project>