Author: kamrul
Date: Sat Dec 10 00:08:58 2011
New Revision: 1212696

URL: http://svn.apache.org/viewvc?rev=1212696&view=rev
Log:
OOZIE-633 Create sharelib directory for oozie(Mohammad)

Added:
    incubator/oozie/trunk/sharelib/oozie/
    incubator/oozie/trunk/sharelib/oozie/pom.xml
Modified:
    incubator/oozie/trunk/core/pom.xml
    incubator/oozie/trunk/pom.xml
    incubator/oozie/trunk/release-log.txt
    incubator/oozie/trunk/sharelib/pom.xml
    incubator/oozie/trunk/src/main/assemblies/sharelib.xml

Modified: incubator/oozie/trunk/core/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/oozie/trunk/core/pom.xml?rev=1212696&r1=1212695&r2=1212696&view=diff
==============================================================================
--- incubator/oozie/trunk/core/pom.xml (original)
+++ incubator/oozie/trunk/core/pom.xml Sat Dec 10 00:08:58 2011
@@ -214,6 +214,13 @@
             <scope>provided</scope>
         </dependency>
 
+        <dependency>
+            <groupId>org.apache.oozie</groupId>
+            <artifactId>oozie-sharelib-oozie</artifactId>
+            <scope>provided</scope>
+        </dependency>
+
+
     </dependencies>
 
     <build>

Modified: incubator/oozie/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/oozie/trunk/pom.xml?rev=1212696&r1=1212695&r2=1212696&view=diff
==============================================================================
--- incubator/oozie/trunk/pom.xml (original)
+++ incubator/oozie/trunk/pom.xml Sat Dec 10 00:08:58 2011
@@ -193,6 +193,11 @@
             </dependency>
             <dependency>
                 <groupId>org.apache.oozie</groupId>
+                <artifactId>oozie-sharelib-oozie</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.oozie</groupId>
                 <artifactId>oozie-docs</artifactId>
                 <version>${project.version}</version>
                 <type>war</type>

Modified: incubator/oozie/trunk/release-log.txt
URL: 
http://svn.apache.org/viewvc/incubator/oozie/trunk/release-log.txt?rev=1212696&r1=1212695&r2=1212696&view=diff
==============================================================================
--- incubator/oozie/trunk/release-log.txt (original)
+++ incubator/oozie/trunk/release-log.txt Sat Dec 10 00:08:58 2011
@@ -1,5 +1,6 @@
 -- Oozie 3.2.0 release
 
+OOZIE-633 Create sharelib directory for oozie.(Mohammad)
 OOZIE-625 Oozie server not starting due to missing sl4j library for 
Authenticationfilter. (tucu)
 OOZIE-617 Add back Ssh action as extension. (tucu)
 OOZIE-578 Support shell action in Oozie WF (Mohammad)

Added: incubator/oozie/trunk/sharelib/oozie/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/oozie/trunk/sharelib/oozie/pom.xml?rev=1212696&view=auto
==============================================================================
--- incubator/oozie/trunk/sharelib/oozie/pom.xml (added)
+++ incubator/oozie/trunk/sharelib/oozie/pom.xml Sat Dec 10 00:08:58 2011
@@ -0,0 +1,70 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you 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/maven-v4_0_0.xsd";>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.oozie</groupId>
+        <artifactId>oozie-main</artifactId>
+        <version>3.2.0-SNAPSHOT</version>
+        <relativePath>../..</relativePath>
+    </parent>
+    <groupId>org.apache.oozie</groupId>
+    <artifactId>oozie-sharelib-oozie</artifactId>
+    <version>3.2.0-SNAPSHOT</version>
+    <description>Apache Oozie Share Lib Oozie</description>
+    <name>Apache Oozie Share Lib Oozie</name>
+    <packaging>jar</packaging>
+
+    <properties>
+        <sharelib.action.postfix>oozie</sharelib.action.postfix>
+    </properties>
+
+    <dependencies>
+       <dependency>
+            <groupId>com.googlecode.json-simple</groupId>
+            <artifactId>json-simple</artifactId>
+            <scope>compile</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+                <filtering>true</filtering>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <configuration>
+                    <finalName>partial-sharelib</finalName>
+                    <appendAssemblyId>false</appendAssemblyId>
+                    <descriptors>
+                        
<descriptor>../../src/main/assemblies/partial-sharelib.xml</descriptor>
+                    </descriptors>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>
+

Modified: incubator/oozie/trunk/sharelib/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/oozie/trunk/sharelib/pom.xml?rev=1212696&r1=1212695&r2=1212696&view=diff
==============================================================================
--- incubator/oozie/trunk/sharelib/pom.xml (original)
+++ incubator/oozie/trunk/sharelib/pom.xml Sat Dec 10 00:08:58 2011
@@ -36,6 +36,7 @@
         <module>pig</module>
         <module>hive</module>
         <module>sqoop</module>
+        <module>oozie</module>
     </modules>
 
     <build>

Modified: incubator/oozie/trunk/src/main/assemblies/sharelib.xml
URL: 
http://svn.apache.org/viewvc/incubator/oozie/trunk/src/main/assemblies/sharelib.xml?rev=1212696&r1=1212695&r2=1212696&view=diff
==============================================================================
--- incubator/oozie/trunk/src/main/assemblies/sharelib.xml (original)
+++ incubator/oozie/trunk/src/main/assemblies/sharelib.xml Sat Dec 10 00:08:58 
2011
@@ -47,6 +47,10 @@
             <directory>${basedir}/sqoop/target/partial-sharelib</directory>
             <outputDirectory>/</outputDirectory>
         </fileSet>
+         <fileSet>
+            <directory>${basedir}/oozie/target/partial-sharelib</directory>
+            <outputDirectory>/</outputDirectory>
+        </fileSet>
     </fileSets>
 
 </assembly>


Reply via email to