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:02:44 UTC

svn commit: r1675910 - in /ofbiz/branches/OFBIZ-6271/framework: catalina/pom.xml entity/pom.xml geronimo/pom.xml

Author: doogie
Date: Fri Apr 24 18:02:44 2015
New Revision: 1675910

URL: http://svn.apache.org/r1675910
Log:
Add some missed dependencies; these were not shown as required, because
javac was only showing 100 errors.  Also, note that several of the
catalina/tomcat deps are not enabled in the catalina component, as they
are only needed at runtime.  Once everything is ported to maven, those
deps will need to be enabled.

Modified:
    ofbiz/branches/OFBIZ-6271/framework/catalina/pom.xml
    ofbiz/branches/OFBIZ-6271/framework/entity/pom.xml
    ofbiz/branches/OFBIZ-6271/framework/geronimo/pom.xml

Modified: ofbiz/branches/OFBIZ-6271/framework/catalina/pom.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-6271/framework/catalina/pom.xml?rev=1675910&r1=1675909&r2=1675910&view=diff
==============================================================================
--- ofbiz/branches/OFBIZ-6271/framework/catalina/pom.xml (original)
+++ ofbiz/branches/OFBIZ-6271/framework/catalina/pom.xml Fri Apr 24 18:02:44 2015
@@ -59,10 +59,13 @@ under the License.
       <groupId>apache-tomcat</groupId>
       <artifactId>catalina-tribes</artifactId>
     </dependency>
+<!--
     <dependency>
       <groupId>apache-tomcat</groupId>
       <artifactId>jasper</artifactId>
+      <scope>runtime</scope>
     </dependency>
+-->
     <dependency>
       <groupId>apache-tomcat</groupId>
       <artifactId>tomcat-api</artifactId>
@@ -75,17 +78,26 @@ under the License.
       <groupId>apache-tomcat</groupId>
       <artifactId>tomcat-util</artifactId>
     </dependency>
+<!--
     <dependency>
       <groupId>apache-tomcat-extras</groupId>
       <artifactId>tomcat-juli-adapters</artifactId>
+      <scope>runtime</scope>
     </dependency>
     <dependency>
       <groupId>apache-tomcat-extras</groupId>
       <artifactId>tomcat-juli</artifactId>
+      <scope>runtime</scope>
     </dependency>
     <dependency>
       <groupId>ecj</groupId>
       <artifactId>ecj</artifactId>
+      <scope>runtime</scope>
+    </dependency>
+-->
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
     </dependency>
   </dependencies>
 </project>

Modified: ofbiz/branches/OFBIZ-6271/framework/entity/pom.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-6271/framework/entity/pom.xml?rev=1675910&r1=1675909&r2=1675910&view=diff
==============================================================================
--- ofbiz/branches/OFBIZ-6271/framework/entity/pom.xml (original)
+++ ofbiz/branches/OFBIZ-6271/framework/entity/pom.xml Fri Apr 24 18:02:44 2015
@@ -36,6 +36,14 @@ under the License.
       <scope>provided</scope>
     </dependency>
     <dependency>
+      <groupId>apache-oro</groupId>
+      <artifactId>oro</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
       <groupId>commons-collections</groupId>
       <artifactId>commons-collections</artifactId>
     </dependency>
@@ -48,12 +56,24 @@ under the License.
       <artifactId>commons-pool2</artifactId>
     </dependency>
     <dependency>
+      <groupId>freemarker</groupId>
+      <artifactId>freemarker</artifactId>
+    </dependency>
+    <dependency>
       <groupId>geronimo</groupId>
       <artifactId>geronimo-jta</artifactId>
     </dependency>
     <dependency>
+      <groupId>groovy-all</groupId>
+      <artifactId>groovy-all</artifactId>
+    </dependency>
+    <dependency>
       <groupId>javolution</groupId>
       <artifactId>javolution</artifactId>
     </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit-dep</artifactId>
+    </dependency>
   </dependencies>
 </project>

Modified: ofbiz/branches/OFBIZ-6271/framework/geronimo/pom.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-6271/framework/geronimo/pom.xml?rev=1675910&r1=1675909&r2=1675910&view=diff
==============================================================================
--- ofbiz/branches/OFBIZ-6271/framework/geronimo/pom.xml (original)
+++ ofbiz/branches/OFBIZ-6271/framework/geronimo/pom.xml Fri Apr 24 18:02:44 2015
@@ -43,6 +43,10 @@ under the License.
     </dependency>
     <dependency>
       <groupId>geronimo</groupId>
+      <artifactId>geronimo-jta</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>geronimo</groupId>
       <artifactId>geronimo-transaction</artifactId>
     </dependency>
   </dependencies>