Author: doogie Date: Tue Apr 21 23:35:52 2015 New Revision: 1675228 URL: http://svn.apache.org/r1675228 Log: Add a pom.xml to framework/catalina.
Added: ofbiz/branches/OFBIZ-6271/framework/catalina/lib/pom.xml ofbiz/branches/OFBIZ-6271/framework/catalina/pom.xml Modified: ofbiz/branches/OFBIZ-6271/framework/pom.xml Added: ofbiz/branches/OFBIZ-6271/framework/catalina/lib/pom.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-6271/framework/catalina/lib/pom.xml?rev=1675228&view=auto ============================================================================== --- ofbiz/branches/OFBIZ-6271/framework/catalina/lib/pom.xml (added) +++ ofbiz/branches/OFBIZ-6271/framework/catalina/lib/pom.xml Tue Apr 21 23:35:52 2015 @@ -0,0 +1,104 @@ +<?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> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.apache.ofbiz</groupId> + <artifactId>ofbiz-framework</artifactId> + <version>TRUNK</version> + <relativePath>../../pom.xml</relativePath> + </parent> + <artifactId>ofbiz-catalina-lib</artifactId> + <packaging>pom</packaging> + + <dependencies> + <dependency> + <groupId>apache-tomcat</groupId> + <artifactId>catalina</artifactId> + <version>7.0.59</version> + <scope>system</scope> + <systemPath>${project.basedir}/tomcat-7.0.59-catalina.jar</systemPath> + </dependency> + <dependency> + <groupId>apache-tomcat</groupId> + <artifactId>catalina-ha</artifactId> + <version>7.0.59</version> + <scope>system</scope> + <systemPath>${project.basedir}/tomcat-7.0.59-catalina-ha.jar</systemPath> + </dependency> + <dependency> + <groupId>apache-tomcat</groupId> + <artifactId>catalina-tribes</artifactId> + <version>7.0.59</version> + <scope>system</scope> + <systemPath>${project.basedir}/tomcat-7.0.59-catalina-tribes.jar</systemPath> + </dependency> + <dependency> + <groupId>apache-tomcat</groupId> + <artifactId>jasper</artifactId> + <version>7.0.59</version> + <scope>system</scope> + <systemPath>${project.basedir}/tomcat-7.0.59-jasper.jar</systemPath> + </dependency> + <dependency> + <groupId>apache-tomcat</groupId> + <artifactId>tomcat-api</artifactId> + <version>7.0.59</version> + <scope>system</scope> + <systemPath>${project.basedir}/tomcat-7.0.59-tomcat-api.jar</systemPath> + </dependency> + <dependency> + <groupId>apache-tomcat</groupId> + <artifactId>tomcat-coyote</artifactId> + <version>7.0.59</version> + <scope>system</scope> + <systemPath>${project.basedir}/tomcat-7.0.59-tomcat-coyote.jar</systemPath> + </dependency> + <dependency> + <groupId>apache-tomcat</groupId> + <artifactId>tomcat-util</artifactId> + <version>7.0.59</version> + <scope>system</scope> + <systemPath>${project.basedir}/tomcat-7.0.59-tomcat-util.jar</systemPath> + </dependency> + <dependency> + <groupId>apache-tomcat-extras</groupId> + <artifactId>tomcat-juli-adapters</artifactId> + <version>7.0.59</version> + <scope>system</scope> + <systemPath>${project.basedir}/tomcat-extras-7.0.59-tomcat-juli-adapters.jar</systemPath> + </dependency> + <dependency> + <groupId>apache-tomcat-extras</groupId> + <artifactId>tomcat-juli</artifactId> + <version>7.0.59</version> + <scope>system</scope> + <systemPath>${project.basedir}/tomcat-extras-7.0.59-tomcat-juli.jar</systemPath> + </dependency> + <dependency> + <groupId>ecj</groupId> + <artifactId>ecj</artifactId> + <version>4.4</version> + <scope>system</scope> + <systemPath>${project.basedir}/ecj-4.4.jar</systemPath> + </dependency> + </dependencies> +</project> Added: ofbiz/branches/OFBIZ-6271/framework/catalina/pom.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-6271/framework/catalina/pom.xml?rev=1675228&view=auto ============================================================================== --- ofbiz/branches/OFBIZ-6271/framework/catalina/pom.xml (added) +++ ofbiz/branches/OFBIZ-6271/framework/catalina/pom.xml Tue Apr 21 23:35:52 2015 @@ -0,0 +1,63 @@ +<?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> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.apache.ofbiz</groupId> + <artifactId>ofbiz-framework</artifactId> + <version>TRUNK</version> + <relativePath>../pom.xml</relativePath> + </parent> + <artifactId>ofbiz-catalina</artifactId> + + <dependencies> + <!-- + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>ofbiz-base-lib-commons</artifactId> + <version>TRUNK</version> + <type>pom</type> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>ofbiz-base-lib-j2eespecs</artifactId> + <version>TRUNK</version> + <type>pom</type> + </dependency> +--> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>ofbiz-catalina-lib</artifactId> + <version>TRUNK</version> + <type>pom</type> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>ofbiz-base</artifactId> + <version>TRUNK</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>ofbiz-entity</artifactId> + <version>TRUNK</version> + </dependency> + </dependencies> +</project> Modified: ofbiz/branches/OFBIZ-6271/framework/pom.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/OFBIZ-6271/framework/pom.xml?rev=1675228&r1=1675227&r2=1675228&view=diff ============================================================================== --- ofbiz/branches/OFBIZ-6271/framework/pom.xml (original) +++ ofbiz/branches/OFBIZ-6271/framework/pom.xml Tue Apr 21 23:35:52 2015 @@ -41,5 +41,7 @@ under the License. <module>entity</module> <module>geronimo/lib</module> <module>geronimo</module> + <module>catalina/lib</module> + <module>catalina</module> </modules> </project>