Skip to content
This repository has been archived by the owner on Jan 6, 2018. It is now read-only.

Commit

Permalink
Closes GH-421 update POM versions for 2.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tucu00 committed Feb 7, 2011
1 parent 5a5393a commit 02a52c9
Show file tree
Hide file tree
Showing 8 changed files with 54 additions and 58 deletions.
4 changes: 2 additions & 2 deletions client/pom.xml
Expand Up @@ -13,12 +13,12 @@
See the License for the specific language governing permissions and
limitations under the License. See accompanying LICENSE file.
-->
<project>
<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>
<artifactId>oozie-main</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>2.3.0</version>
</parent>
<artifactId>oozie-client</artifactId>
<description>Oozie Client</description>
Expand Down
41 changes: 20 additions & 21 deletions core/pom.xml
Expand Up @@ -13,12 +13,12 @@
See the License for the specific language governing permissions and
limitations under the License. See accompanying LICENSE file.
-->
<project>
<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>
<artifactId>oozie-main</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>2.3.0</version>
</parent>
<artifactId>oozie-core</artifactId>
<description>Oozie Core</description>
Expand Down Expand Up @@ -265,30 +265,29 @@
<configuration>
<target>
<path id="cp">
<path refid="maven.test.classpath"/>
<path refid="maven.compile.classpath"/>
<path refid="maven.dependency.classpath"/>
<path refid="maven.test.classpath" />
<path refid="maven.compile.classpath" />
<path refid="maven.dependency.classpath" />
</path>
<taskdef name="openjpac" classname=
"org.apache.openjpa.ant.PCEnhancerTask">
<classpath refid="cp"/>
<taskdef name="openjpac" classname="org.apache.openjpa.ant.PCEnhancerTask">
<classpath refid="cp" />
</taskdef>
<fileset id="enhance.path.ref" dir="../core/target/classes">
<include name="**/JsonWorkflowJob.class"/>
<include name="**/JsonWorkflowAction.class"/>
<include name="**/JsonCoordinatorJob.class"/>
<include name="**/JsonCoordinatorAction.class"/>
<include name="**/JsonSLAEvent.class"/>

<include name="**/WorkflowJobBean.class"/>
<include name="**/WorkflowActionBean.class"/>
<include name="**/CoordinatorJobBean.class"/>
<include name="**/CoordinatorActionBean.class"/>
<include name="**/SLAEventBean.class"/>
<include name="**/JsonWorkflowJob.class" />
<include name="**/JsonWorkflowAction.class" />
<include name="**/JsonCoordinatorJob.class" />
<include name="**/JsonCoordinatorAction.class" />
<include name="**/JsonSLAEvent.class" />

<include name="**/WorkflowJobBean.class" />
<include name="**/WorkflowActionBean.class" />
<include name="**/CoordinatorJobBean.class" />
<include name="**/CoordinatorActionBean.class" />
<include name="**/SLAEventBean.class" />
</fileset>
<openjpac>
<classpath refid="cp"/>
<fileset refid="enhance.path.ref"/>
<classpath refid="cp" />
<fileset refid="enhance.path.ref" />
</openjpac>
</target>
</configuration>
Expand Down
33 changes: 15 additions & 18 deletions distro/pom.xml
Expand Up @@ -13,12 +13,12 @@
See the License for the specific language governing permissions and
limitations under the License. See accompanying LICENSE file.
-->
<project>
<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>
<artifactId>oozie-main</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>2.3.0</version>
</parent>
<!-- calling the artifact oozie to the generated distro file is oozie- -->
<artifactId>oozie</artifactId>
Expand Down Expand Up @@ -82,23 +82,20 @@
<execution>
<configuration>
<target>
<mkdir dir="downloads"/>
<get src="http://www.apache.org/dist/tomcat/tomcat-6/v6.0.29/bin/apache-tomcat-6.0.29.tar.gz"
dest="downloads/tomcat.tar.gz"
verbose="true"
skipexisting="true"/>
<delete dir="target/tomcat"/>
<mkdir dir="target/tomcat"/>
<gunzip src="downloads/tomcat.tar.gz" dest="target/tomcat/tomcat.tar"/>
<untar src="target/tomcat/tomcat.tar" dest="target/tomcat"/>
<move file="target/tomcat/apache-tomcat-6.0.29" tofile="target/tomcat/oozie-server"/>
<delete dir="target/tomcat/oozie-server/webapps"/>
<mkdir dir="target/tomcat/oozie-server/webapps"/>
<delete file="target/tomcat/oozie-server/conf/server.xml"/>
<copy file="src/main/tomcat/server.xml" toDir="target/tomcat/oozie-server/conf"/>
<copy file="src/main/tomcat/logging.properties" toDir="target/tomcat/oozie-server/conf"/>
<mkdir dir="downloads" />
<get src="http://www.apache.org/dist/tomcat/tomcat-6/v6.0.29/bin/apache-tomcat-6.0.29.tar.gz" dest="downloads/tomcat.tar.gz" verbose="true" skipexisting="true" />
<delete dir="target/tomcat" />
<mkdir dir="target/tomcat" />
<gunzip src="downloads/tomcat.tar.gz" dest="target/tomcat/tomcat.tar" />
<untar src="target/tomcat/tomcat.tar" dest="target/tomcat" />
<move file="target/tomcat/apache-tomcat-6.0.29" tofile="target/tomcat/oozie-server" />
<delete dir="target/tomcat/oozie-server/webapps" />
<mkdir dir="target/tomcat/oozie-server/webapps" />
<delete file="target/tomcat/oozie-server/conf/server.xml" />
<copy file="src/main/tomcat/server.xml" toDir="target/tomcat/oozie-server/conf" />
<copy file="src/main/tomcat/logging.properties" toDir="target/tomcat/oozie-server/conf" />
<copy todir="target/tomcat/oozie-server/webapps/ROOT">
<fileset dir="src/main/tomcat/ROOT"/>
<fileset dir="src/main/tomcat/ROOT" />
</copy>
</target>
</configuration>
Expand Down
4 changes: 2 additions & 2 deletions docs/pom.xml
Expand Up @@ -13,12 +13,12 @@
See the License for the specific language governing permissions and
limitations under the License. See accompanying LICENSE file.
-->
<project>
<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>
<artifactId>oozie-main</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>2.3.0</version>
</parent>
<artifactId>oozie-docs</artifactId>
<description>Oozie Docs</description>
Expand Down
4 changes: 2 additions & 2 deletions examples/pom.xml
Expand Up @@ -13,12 +13,12 @@
See the License for the specific language governing permissions and
limitations under the License. See accompanying LICENSE file.
-->
<project>
<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>
<artifactId>oozie-main</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>2.3.0</version>
</parent>
<artifactId>oozie-examples</artifactId>
<description>Oozie Examples</description>
Expand Down
18 changes: 9 additions & 9 deletions pom.xml
Expand Up @@ -13,11 +13,11 @@
See the License for the specific language governing permissions and
limitations under the License. See accompanying LICENSE file.
-->
<project>
<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>
<artifactId>oozie-main</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>2.3.0</version>
<description>Oozie Main</description>
<name>Oozie Main</name>
<packaging>pom</packaging>
Expand Down Expand Up @@ -125,39 +125,39 @@
<dependency>
<groupId>com.yahoo.oozie</groupId>
<artifactId>oozie-client</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.yahoo.oozie</groupId>
<artifactId>oozie-core</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.yahoo.oozie</groupId>
<artifactId>oozie-core</artifactId>
<classifier>tests</classifier>
<version>2.3.0-SNAPSHOT</version>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.yahoo.oozie</groupId>
<artifactId>oozie-examples</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.yahoo.oozie</groupId>
<artifactId>oozie-sharelib</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.yahoo.oozie</groupId>
<artifactId>oozie-docs</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>2.3.0</version>
<type>war</type>
</dependency>
<dependency>
<groupId>com.yahoo.oozie</groupId>
<artifactId>oozie-webapp</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>2.3.0</version>
<type>war</type>
</dependency>

Expand Down
4 changes: 2 additions & 2 deletions sharelib/pom.xml
Expand Up @@ -13,12 +13,12 @@
See the License for the specific language governing permissions and
limitations under the License. See accompanying LICENSE file.
-->
<project>
<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>
<artifactId>oozie-main</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>2.3.0</version>
</parent>
<artifactId>oozie-sharelib</artifactId>
<description>Oozie Share Lib</description>
Expand Down
4 changes: 2 additions & 2 deletions webapp/pom.xml
Expand Up @@ -13,12 +13,12 @@
See the License for the specific language governing permissions and
limitations under the License. See accompanying LICENSE file.
-->
<project>
<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>
<artifactId>oozie-main</artifactId>
<version>2.3.0-SNAPSHOT</version>
<version>2.3.0</version>
</parent>
<artifactId>oozie-webapp</artifactId>
<description>Oozie WebApp</description>
Expand Down

0 comments on commit 02a52c9

Please sign in to comment.