You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2015/04/24 20:03:01 UTC

svn commit: r1675913 - in /ofbiz/branches/OFBIZ-6271/framework: pom.xml security/pom.xml

Author: doogie
Date: Fri Apr 24 18:03:00 2015
New Revision: 1675913

URL: http://svn.apache.org/r1675913
Log:
Add a pom.xml to framework/security.

Added:
    ofbiz/branches/OFBIZ-6271/framework/security/pom.xml
      - copied, changed from r1675912, ofbiz/branches/OFBIZ-6271/framework/pom.xml
Modified:
    ofbiz/branches/OFBIZ-6271/framework/pom.xml

Modified: ofbiz/branches/OFBIZ-6271/framework/pom.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-6271/framework/pom.xml?rev=1675913&r1=1675912&r2=1675913&view=diff
==============================================================================
--- ofbiz/branches/OFBIZ-6271/framework/pom.xml (original)
+++ ofbiz/branches/OFBIZ-6271/framework/pom.xml Fri Apr 24 18:03:00 2015
@@ -43,5 +43,6 @@ under the License.
     <module>geronimo</module>
     <module>catalina/lib</module>
     <module>catalina</module>
+    <module>security</module>
   </modules>
 </project>

Copied: ofbiz/branches/OFBIZ-6271/framework/security/pom.xml (from r1675912, ofbiz/branches/OFBIZ-6271/framework/pom.xml)
URL: http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-6271/framework/security/pom.xml?p2=ofbiz/branches/OFBIZ-6271/framework/security/pom.xml&p1=ofbiz/branches/OFBIZ-6271/framework/pom.xml&r1=1675912&r2=1675913&rev=1675913&view=diff
==============================================================================
--- ofbiz/branches/OFBIZ-6271/framework/pom.xml (original)
+++ ofbiz/branches/OFBIZ-6271/framework/security/pom.xml Fri Apr 24 18:03:00 2015
@@ -22,26 +22,28 @@ under the License.
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.apache.ofbiz</groupId>
-    <artifactId>ofbiz-parent</artifactId>
+    <artifactId>ofbiz-component</artifactId>
     <version>TRUNK</version>
-    <relativePath>../pom.xml</relativePath>
+    <relativePath>../../ofbiz-component-pom.xml</relativePath>
   </parent>
-  <artifactId>ofbiz-framework</artifactId>
-  <packaging>pom</packaging>
+  <artifactId>ofbiz-security</artifactId>
 
-  <modules>
-    <module>start</module>
-    <module>base/lib</module>
-    <module>base/lib/commons</module>
-    <module>base/lib/j2eespecs</module>
-    <module>base/lib/scripting</module>
-    <module>base</module>
-    <module>entity/lib</module>
-    <module>entity/lib/jdbc</module>
-    <module>entity</module>
-    <module>geronimo/lib</module>
-    <module>geronimo</module>
-    <module>catalina/lib</module>
-    <module>catalina</module>
-  </modules>
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>ofbiz-base</artifactId>
+      <version>TRUNK</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>ofbiz-entity</artifactId>
+      <version>TRUNK</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+    </dependency>
+  </dependencies>
 </project>