| <?xml version="1.0" encoding="ISO-8859-1"?> |
| <!-- |
| Copyright 2006 The Apache Software Foundation |
| |
| Licensed 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. |
| --> |
| |
| <!-- $Rev$ $Date$ --> |
| |
| <project> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.apache.geronimo.modules</groupId> |
| <artifactId>modules-parent</artifactId> |
| <version>1.2-SNAPSHOT</version> |
| <relativePath>../pom.xml</relativePath> |
| </parent> |
| |
| <artifactId>geronimo-tomcat</artifactId> |
| <name>Geronimo :: Tomcat</name> |
| <description>Geronimo Tomcat integration</description> |
| |
| <properties> |
| <buildDir>${project.build.directory}</buildDir> |
| <endorsedDir>${buildDir}/endorsed</endorsedDir> |
| <localRepoDir>${settings.localRepository}</localRepoDir> |
| </properties> |
| |
| <build> |
| <resources> |
| <resource> |
| <directory>src/resources2</directory> |
| </resource> |
| </resources> |
| |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <systemProperties> |
| <property> |
| <name>java.endorsed.dirs</name> |
| <value>${endorsedDir}</value> |
| </property> |
| </systemProperties> |
| <forkMode>pertest</forkMode> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <executions> |
| <execution> |
| <phase>process-test-resources</phase> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| <configuration> |
| <tasks> |
| <copy todir="target/var/catalina/conf" file="src/resources/META-INF/geronimo-tomcat/var/catalina/conf/web.xml" /> |
| <copy todir="target/var/catalina/webapps"> |
| <fileset dir="src/test-resources/deployables"> |
| <include name="war1/**" /> |
| <include name="war3/**" /> |
| </fileset> |
| </copy> |
| <copy todir="${endorsedDir}" flatten="true"> |
| <fileset dir="${localRepoDir}"> |
| <include name="xerces/xercesImpl/${xercesVersion}/*.jar" /> |
| <include name="xml-apis/xml-apis/${xmlApisVersion}/*.jar" /> |
| </fileset> |
| </copy> |
| </tasks> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.geronimo.specs</groupId> |
| <artifactId>geronimo-jsp_2.0_spec</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.geronimo.specs</groupId> |
| <artifactId>geronimo-j2ee-jacc_1.0_spec</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.geronimo.specs</groupId> |
| <artifactId>geronimo-j2ee-connector_1.5_spec</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.geronimo.specs</groupId> |
| <artifactId>geronimo-jta_1.0.1B_spec</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.geronimo.specs</groupId> |
| <artifactId>geronimo-j2ee-management_1.0_spec</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.geronimo.modules</groupId> |
| <artifactId>geronimo-connector</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.geronimo.modules</groupId> |
| <artifactId>geronimo-naming</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.geronimo.modules</groupId> |
| <artifactId>geronimo-security</artifactId> |
| </dependency> |
| <!-- cglib, commons-logging, log4j, mx4j coming from kernel --> |
| <dependency> |
| <groupId>org.apache.geronimo.modules</groupId> |
| <artifactId>geronimo-system</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.geronimo.modules</groupId> |
| <artifactId>geronimo-transaction</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.geronimo.modules</groupId> |
| <artifactId>geronimo-webservices</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.geronimo.modules</groupId> |
| <artifactId>geronimo-security-builder</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>tomcat</groupId> |
| <artifactId>catalina</artifactId> |
| <version>${tomcatVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>tomcat</groupId> |
| <artifactId>tomcat-ajp</artifactId> |
| <version>${tomcatAjpVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>tomcat</groupId> |
| <artifactId>catalina-cluster</artifactId> |
| <version>${tomcatVersion}</version> |
| </dependency> |
| |
| <!-- |
| - Required until any realm is provided to Tomcat |
| - See StandardEngine::getRealm() |
| --> |
| <dependency> |
| <groupId>tomcat</groupId> |
| <artifactId>catalina-optional</artifactId> |
| <version>${tomcatVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>tomcat</groupId> |
| <artifactId>tomcat-coyote</artifactId> |
| <version>${tomcatVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>tomcat</groupId> |
| <artifactId>tomcat-http</artifactId> |
| <version>${tomcatVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>tomcat</groupId> |
| <artifactId>jasper-compiler</artifactId> |
| <version>${tomcatVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>tomcat</groupId> |
| <artifactId>jasper-compiler-jdt</artifactId> |
| <version>${tomcatVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>tomcat</groupId> |
| <artifactId>jasper-runtime</artifactId> |
| <version>${tomcatVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>tomcat</groupId> |
| <artifactId>tomcat-util</artifactId> |
| <version>${tomcatVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>tomcat</groupId> |
| <artifactId>naming-resources</artifactId> |
| <version>${tomcatVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>tomcat</groupId> |
| <artifactId>servlets-default</artifactId> |
| <version>${tomcatVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>tomcat</groupId> |
| <artifactId>servlets-invoker</artifactId> |
| <version>${tomcatVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>xerces</groupId> |
| <artifactId>xercesImpl</artifactId> |
| <version>${xercesVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>xml-apis</groupId> |
| <artifactId>xml-apis</artifactId> |
| <version>${xmlApisVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-beanutils</groupId> |
| <artifactId>commons-beanutils</artifactId> |
| <version>${commonsBeanutilsVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-collections</groupId> |
| <artifactId>commons-collections</artifactId> |
| <version>${commonsCollectionsVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-digester</groupId> |
| <artifactId>commons-digester</artifactId> |
| <version>${commonsDigesterVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-el</groupId> |
| <artifactId>commons-el</artifactId> |
| <version>${commonsElVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-logging</groupId> |
| <artifactId>commons-logging</artifactId> |
| <version>${commonsLoggingVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-modeler</groupId> |
| <artifactId>commons-modeler</artifactId> |
| <version>${commonsModelerVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>regexp</groupId> |
| <artifactId>regexp</artifactId> |
| <version>${regexpVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>wadi</groupId> |
| <artifactId>wadi-core</artifactId> |
| <version>${wadiVersion}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>wadi</groupId> |
| <artifactId>wadi-tomcat55</artifactId> |
| <version>${wadiVersion}</version> |
| </dependency> |
| </dependencies> |
| </project> |
| |