You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gora.apache.org by ma...@apache.org on 2011/06/26 00:11:58 UTC

svn commit: r1139633 - in /incubator/gora/branches/0.1.1-incubating: gora-core/pom.xml gora-hbase/pom.xml gora-sql/pom.xml gora-tutorial/pom.xml pom.xml

Author: mattmann
Date: Sat Jun 25 22:11:58 2011
New Revision: 1139633

URL: http://svn.apache.org/viewvc?rev=1139633&view=rev
Log:
[maven-release-plugin] rollback the release of 0.1.1-incubating

Modified:
    incubator/gora/branches/0.1.1-incubating/gora-core/pom.xml
    incubator/gora/branches/0.1.1-incubating/gora-hbase/pom.xml
    incubator/gora/branches/0.1.1-incubating/gora-sql/pom.xml
    incubator/gora/branches/0.1.1-incubating/gora-tutorial/pom.xml
    incubator/gora/branches/0.1.1-incubating/pom.xml

Modified: incubator/gora/branches/0.1.1-incubating/gora-core/pom.xml
URL: http://svn.apache.org/viewvc/incubator/gora/branches/0.1.1-incubating/gora-core/pom.xml?rev=1139633&r1=1139632&r2=1139633&view=diff
==============================================================================
--- incubator/gora/branches/0.1.1-incubating/gora-core/pom.xml (original)
+++ incubator/gora/branches/0.1.1-incubating/gora-core/pom.xml Sat Jun 25 22:11:58 2011
@@ -1,5 +1,7 @@
 <?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">
+<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 to the Apache Software Foundation (ASF) under one or more
     contributor license agreements.  See the NOTICE file distributed with
@@ -21,7 +23,7 @@
     <parent>
         <groupId>org.apache.gora</groupId>
         <artifactId>apache-gora</artifactId>
-        <version>0.1.1-incubating</version>
+        <version>0.1.1-incubating-SNAPSHOT</version>
     </parent>
     <artifactId>gora-core</artifactId>
     <packaging>jar</packaging>
@@ -93,19 +95,12 @@
         <dependency>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
-            <exclusions>
-               <exclusion>
-                  <groupId>javax.jms</groupId>
-                  <artifactId>jms</artifactId>
-               </exclusion>
-            </exclusions>
         </dependency>
 
         <!-- Testing Dependencies -->
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
-            <scope>test</scope>
         </dependency>
 
         <dependency>

Modified: incubator/gora/branches/0.1.1-incubating/gora-hbase/pom.xml
URL: http://svn.apache.org/viewvc/incubator/gora/branches/0.1.1-incubating/gora-hbase/pom.xml?rev=1139633&r1=1139632&r2=1139633&view=diff
==============================================================================
--- incubator/gora/branches/0.1.1-incubating/gora-hbase/pom.xml (original)
+++ incubator/gora/branches/0.1.1-incubating/gora-hbase/pom.xml Sat Jun 25 22:11:58 2011
@@ -1,5 +1,7 @@
 <?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">
+<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 to the Apache Software Foundation (ASF) under one or more
     contributor license agreements.  See the NOTICE file distributed with
@@ -21,7 +23,7 @@
     <parent>
         <groupId>org.apache.gora</groupId>
         <artifactId>apache-gora</artifactId>
-        <version>0.1.1-incubating</version>
+        <version>0.1.1-incubating-SNAPSHOT</version>
     </parent>
     <artifactId>gora-hbase</artifactId>
     <packaging>jar</packaging>
@@ -60,21 +62,19 @@
             <version>${project.version}</version>
         </dependency>
 
-        <!-- Hadoop Dependencies -->
         <dependency>
-            <groupId>org.apache.hbase</groupId>
-            <artifactId>hbase</artifactId>
-            <version>0.90.0</version>
+            <groupId>org.apache.gora</groupId>
+            <artifactId>gora-core</artifactId>
+            <version>${project.version}</version>
+            <classifier>tests</classifier>
         </dependency>
 
+        <!-- Hadoop Dependencies -->
         <dependency>
             <groupId>org.apache.hbase</groupId>
             <artifactId>hbase</artifactId>
-	    <version>0.90.0</version>
-            <classifier>tests</classifier>
         </dependency>
 
-
         <dependency>
             <groupId>org.apache.hadoop</groupId>
             <artifactId>avro</artifactId>
@@ -100,12 +100,6 @@
         <dependency>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
-            <exclusions>
-               <exclusion>
-                  <groupId>javax.jms</groupId>
-                  <artifactId>jms</artifactId>
-               </exclusion>
-            </exclusions>
         </dependency>
 
         <!-- Testing Dependencies -->

Modified: incubator/gora/branches/0.1.1-incubating/gora-sql/pom.xml
URL: http://svn.apache.org/viewvc/incubator/gora/branches/0.1.1-incubating/gora-sql/pom.xml?rev=1139633&r1=1139632&r2=1139633&view=diff
==============================================================================
--- incubator/gora/branches/0.1.1-incubating/gora-sql/pom.xml (original)
+++ incubator/gora/branches/0.1.1-incubating/gora-sql/pom.xml Sat Jun 25 22:11:58 2011
@@ -1,5 +1,7 @@
 <?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">
+<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 to the Apache Software Foundation (ASF) under one or more
     contributor license agreements.  See the NOTICE file distributed with
@@ -21,7 +23,7 @@
     <parent>
         <groupId>org.apache.gora</groupId>
         <artifactId>apache-gora</artifactId>
-        <version>0.1.1-incubating</version>
+        <version>0.1.1-incubating-SNAPSHOT</version>
     </parent>
     <artifactId>gora-sql</artifactId>
     <packaging>jar</packaging>
@@ -61,6 +63,13 @@
         </dependency>
 
         <dependency>
+            <groupId>org.apache.gora</groupId>
+            <artifactId>gora-core</artifactId>
+            <version>${project.version}</version>
+            <classifier>tests</classifier>
+        </dependency>
+
+        <dependency>
             <groupId>org.apache.hadoop</groupId>
             <artifactId>avro</artifactId>
         </dependency>
@@ -89,19 +98,12 @@
         <dependency>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
-            <exclusions>
-               <exclusion>
-                  <groupId>javax.jms</groupId>
-                  <artifactId>jms</artifactId>
-               </exclusion>
-            </exclusions>
         </dependency>
 
         <!-- Testing Dependencies -->
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
-            <scope>test</scope>
         </dependency>
 
         <dependency>

Modified: incubator/gora/branches/0.1.1-incubating/gora-tutorial/pom.xml
URL: http://svn.apache.org/viewvc/incubator/gora/branches/0.1.1-incubating/gora-tutorial/pom.xml?rev=1139633&r1=1139632&r2=1139633&view=diff
==============================================================================
--- incubator/gora/branches/0.1.1-incubating/gora-tutorial/pom.xml (original)
+++ incubator/gora/branches/0.1.1-incubating/gora-tutorial/pom.xml Sat Jun 25 22:11:58 2011
@@ -1,5 +1,7 @@
 <?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">
+<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 to the Apache Software Foundation (ASF) under one or more
     contributor license agreements.  See the NOTICE file distributed with
@@ -21,7 +23,7 @@
     <parent>
         <groupId>org.apache.gora</groupId>
         <artifactId>apache-gora</artifactId>
-        <version>0.1.1-incubating</version>
+        <version>0.1.1-incubating-SNAPSHOT</version>
     </parent>
     <artifactId>gora-tutorial</artifactId>
     <packaging>jar</packaging>
@@ -61,6 +63,13 @@
         </dependency>
 
         <dependency>
+            <groupId>org.apache.gora</groupId>
+            <artifactId>gora-sql</artifactId>
+            <version>${project.version}</version>
+            <classifier>tests</classifier>
+        </dependency>
+
+        <dependency>
             <groupId>org.hsqldb</groupId>
             <artifactId>hsqldb</artifactId>
         </dependency>

Modified: incubator/gora/branches/0.1.1-incubating/pom.xml
URL: http://svn.apache.org/viewvc/incubator/gora/branches/0.1.1-incubating/pom.xml?rev=1139633&r1=1139632&r2=1139633&view=diff
==============================================================================
--- incubator/gora/branches/0.1.1-incubating/pom.xml (original)
+++ incubator/gora/branches/0.1.1-incubating/pom.xml Sat Jun 25 22:11:58 2011
@@ -1,5 +1,7 @@
 <?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">
+<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 to the Apache Software Foundation (ASF) under one or more
     contributor license agreements.  See the NOTICE file distributed with
@@ -21,12 +23,12 @@
     <groupId>org.apache.gora</groupId>
     <artifactId>apache-gora</artifactId>
     <packaging>pom</packaging>
-    <version>0.1.1-incubating</version>
+    <version>0.1.1-incubating-SNAPSHOT</version>
     <name>Apache Gora</name>
 
        <scm>
-        <connection>scm:svn:scm:svn:http://svn.apache.org/repos/asf/incubator/gora/tags/0.1.1-incubating</connection>
-        <developerConnection>scm:svn:scm:svn:http://svn.apache.org/repos/asf/incubator/gora/tags/0.1.1-incubating</developerConnection>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/gora/trunk/</connection>
+        <developerConnection>scm:svn:http://svn.apache.org/repos/asf/incubator/gora/trunk/</developerConnection>
       </scm>
 
     <build>