Author: kamrul
Date: Tue Feb 7 03:31:48 2012
New Revision: 1241340
URL: http://svn.apache.org/viewvc?rev=1241340&view=rev
Log:
OOZIE-601 Oozie's POMs should use org.apache.oozie as group(tucu).
Modified:
incubator/oozie/branches/branch-3.1/client/pom.xml
incubator/oozie/branches/branch-3.1/core/pom.xml
incubator/oozie/branches/branch-3.1/distro/pom.xml
incubator/oozie/branches/branch-3.1/docs/pom.xml
incubator/oozie/branches/branch-3.1/examples/pom.xml
incubator/oozie/branches/branch-3.1/minitest/pom.xml
incubator/oozie/branches/branch-3.1/pom.xml
incubator/oozie/branches/branch-3.1/release-log.txt
incubator/oozie/branches/branch-3.1/sharelib/pom.xml
incubator/oozie/branches/branch-3.1/webapp/pom.xml
Modified: incubator/oozie/branches/branch-3.1/client/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/oozie/branches/branch-3.1/client/pom.xml?rev=1241340&r1=1241339&r2=1241340&view=diff
==============================================================================
--- incubator/oozie/branches/branch-3.1/client/pom.xml (original)
+++ incubator/oozie/branches/branch-3.1/client/pom.xml Tue Feb 7 03:31:48 2012
@@ -19,7 +19,7 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-main</artifactId>
<version>3.1.3</version>
</parent>
Modified: incubator/oozie/branches/branch-3.1/core/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/oozie/branches/branch-3.1/core/pom.xml?rev=1241340&r1=1241339&r2=1241340&view=diff
==============================================================================
--- incubator/oozie/branches/branch-3.1/core/pom.xml (original)
+++ incubator/oozie/branches/branch-3.1/core/pom.xml Tue Feb 7 03:31:48 2012
@@ -19,7 +19,7 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-main</artifactId>
<version>3.1.3</version>
</parent>
@@ -43,7 +43,7 @@
<dependencies>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-client</artifactId>
<scope>compile</scope>
</dependency>
@@ -98,7 +98,7 @@
</dependency>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-sharelib</artifactId>
<scope>provided</scope>
</dependency>
Modified: incubator/oozie/branches/branch-3.1/distro/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/oozie/branches/branch-3.1/distro/pom.xml?rev=1241340&r1=1241339&r2=1241340&view=diff
==============================================================================
--- incubator/oozie/branches/branch-3.1/distro/pom.xml (original)
+++ incubator/oozie/branches/branch-3.1/distro/pom.xml Tue Feb 7 03:31:48 2012
@@ -19,7 +19,7 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-main</artifactId>
<version>3.1.3</version>
</parent>
@@ -43,23 +43,23 @@
<dependencies>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-core</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-client</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-webapp</artifactId>
<scope>compile</scope>
<type>war</type>
</dependency>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-examples</artifactId>
<scope>compile</scope>
</dependency>
@@ -109,6 +109,13 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
</plugins>
</build>
Modified: incubator/oozie/branches/branch-3.1/docs/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/oozie/branches/branch-3.1/docs/pom.xml?rev=1241340&r1=1241339&r2=1241340&view=diff
==============================================================================
--- incubator/oozie/branches/branch-3.1/docs/pom.xml (original)
+++ incubator/oozie/branches/branch-3.1/docs/pom.xml Tue Feb 7 03:31:48 2012
@@ -19,7 +19,7 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-main</artifactId>
<version>3.1.3</version>
</parent>
@@ -42,7 +42,7 @@
<dependencies>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-core</artifactId>
<scope>provided</scope>
</dependency>
Modified: incubator/oozie/branches/branch-3.1/examples/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/oozie/branches/branch-3.1/examples/pom.xml?rev=1241340&r1=1241339&r2=1241340&view=diff
==============================================================================
--- incubator/oozie/branches/branch-3.1/examples/pom.xml (original)
+++ incubator/oozie/branches/branch-3.1/examples/pom.xml Tue Feb 7 03:31:48
2012
@@ -19,7 +19,7 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-main</artifactId>
<version>3.1.3</version>
</parent>
@@ -43,26 +43,26 @@
<dependencies>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-core</artifactId>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-client</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-sharelib</artifactId>
<scope>compile</scope>
</dependency>
Modified: incubator/oozie/branches/branch-3.1/minitest/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/oozie/branches/branch-3.1/minitest/pom.xml?rev=1241340&r1=1241339&r2=1241340&view=diff
==============================================================================
--- incubator/oozie/branches/branch-3.1/minitest/pom.xml (original)
+++ incubator/oozie/branches/branch-3.1/minitest/pom.xml Tue Feb 7 03:31:48
2012
@@ -64,13 +64,13 @@
<dependencies>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-core</artifactId>
<version>3.1.3</version>
<scope>test</scope>
</dependency>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-core</artifactId>
<version>3.1.3</version>
<type>test-jar</type>
Modified: incubator/oozie/branches/branch-3.1/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/oozie/branches/branch-3.1/pom.xml?rev=1241340&r1=1241339&r2=1241340&view=diff
==============================================================================
--- incubator/oozie/branches/branch-3.1/pom.xml (original)
+++ incubator/oozie/branches/branch-3.1/pom.xml Tue Feb 7 03:31:48 2012
@@ -18,7 +18,7 @@
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-main</artifactId>
<version>3.1.3</version>
<description>Oozie Main</description>
@@ -38,8 +38,8 @@
</organization>
<scm>
- <connection>scm:git:git://github.com/yahoo/oozie.git</connection>
- <url>https://github.com/yahoo/oozie</url>
+ <connection>scm:git:git://github.org.apache.oozie.git</connection>
+ <url>https://github.org.apache.oozie</url>
</scm>
<properties>
@@ -132,39 +132,39 @@
<dependencies>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-client</artifactId>
<version>3.1.3</version>
</dependency>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-core</artifactId>
<version>3.1.3</version>
</dependency>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-core</artifactId>
<classifier>tests</classifier>
<version>3.1.3</version>
</dependency>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-examples</artifactId>
<version>3.1.3</version>
</dependency>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-sharelib</artifactId>
<version>3.1.3</version>
</dependency>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-docs</artifactId>
<version>3.1.3</version>
<type>war</type>
</dependency>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-webapp</artifactId>
<version>3.1.3</version>
<type>war</type>
Modified: incubator/oozie/branches/branch-3.1/release-log.txt
URL:
http://svn.apache.org/viewvc/incubator/oozie/branches/branch-3.1/release-log.txt?rev=1241340&r1=1241339&r2=1241340&view=diff
==============================================================================
--- incubator/oozie/branches/branch-3.1/release-log.txt (original)
+++ incubator/oozie/branches/branch-3.1/release-log.txt Tue Feb 7 03:31:48 2012
@@ -1,8 +1,9 @@
-- Oozie 3.1.3 release
+OOZIE-681 Update readme.txt contents.(Mohammad)
+OOZIE-680 oozie's assembly creates an extra level of empty subdirectory for
docs. (rvs via tucu)
OOZIE-608 testCoordChangeEndTime and testCoordChangeXCommand are
failing(Mohamed).
+OOZIE-601 Oozie's POMs should use org.apache.oozie as group(tucu).
OOZIE-678 Update NOTICE.txt to reflect the workcount binaries into oozie
src(Mohammad)
-OOZIE-681 Update the contents of readme.txt.(Mohammad)
-OOZIE-680 oozie's assembly creates an extra level of empty subdirectory for
docs. (rvs via tucu)
-- Oozie 3.1.2 release
Modified: incubator/oozie/branches/branch-3.1/sharelib/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/oozie/branches/branch-3.1/sharelib/pom.xml?rev=1241340&r1=1241339&r2=1241340&view=diff
==============================================================================
--- incubator/oozie/branches/branch-3.1/sharelib/pom.xml (original)
+++ incubator/oozie/branches/branch-3.1/sharelib/pom.xml Tue Feb 7 03:31:48
2012
@@ -19,7 +19,7 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-main</artifactId>
<version>3.1.3</version>
</parent>
Modified: incubator/oozie/branches/branch-3.1/webapp/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/oozie/branches/branch-3.1/webapp/pom.xml?rev=1241340&r1=1241339&r2=1241340&view=diff
==============================================================================
--- incubator/oozie/branches/branch-3.1/webapp/pom.xml (original)
+++ incubator/oozie/branches/branch-3.1/webapp/pom.xml Tue Feb 7 03:31:48 2012
@@ -19,7 +19,7 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-main</artifactId>
<version>3.1.3</version>
</parent>
@@ -42,7 +42,7 @@
<dependencies>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-core</artifactId>
<scope>compile</scope>
<exclusions>
@@ -105,7 +105,7 @@
</exclusions>
</dependency>
<dependency>
- <groupId>com.yahoo.oozie</groupId>
+ <groupId>org.apache.oozie</groupId>
<artifactId>oozie-docs</artifactId>
<type>war</type>
<scope>compile</scope>