| <?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 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.geronimo.modules</groupId> |
| <artifactId>modules</artifactId> |
| <version>1.2-SNAPSHOT</version> |
| <relativePath>../pom.xml</relativePath> |
| </parent> |
| |
| <artifactId>geronimo-tomcat</artifactId> |
| <name>Geronimo :: Tomcat</name> |
| |
| <!-- |
| |
| HACK: Need to explicitly configure SCM for this module since its artifactId |
| does not match the directory it lives in. |
| |
| FIXME: Rename module directory or artifactId. |
| |
| --> |
| <scm> |
| <connection>scm:svn:http://svn.apache.org/repos/asf/geronimo/trunk/modules/tomcat</connection> |
| <developerConnection>scm:svn:https://${maven.username}@svn.apache.org/repos/asf/geronimo/trunk/modules/tomcat</developerConnection> |
| <url>http://svn.apache.org/viewvc/geronimo/trunk/modules/tomcat</url> |
| </scm> |
| |
| <properties> |
| <endorsedDir>${project.build.directory}/endorsed</endorsedDir> |
| <localRepoDir>${settings.localRepository}</localRepoDir> |
| </properties> |
| |
| <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> |
| <version>${pom.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.geronimo.modules</groupId> |
| <artifactId>geronimo-naming</artifactId> |
| <version>${pom.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.geronimo.modules</groupId> |
| <artifactId>geronimo-security</artifactId> |
| <version>${pom.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.geronimo.modules</groupId> |
| <artifactId>geronimo-system</artifactId> |
| <version>${pom.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.geronimo.modules</groupId> |
| <artifactId>geronimo-transaction</artifactId> |
| <version>${pom.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.geronimo.modules</groupId> |
| <artifactId>geronimo-webservices</artifactId> |
| <version>${pom.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.geronimo.modules</groupId> |
| <artifactId>geronimo-security-builder</artifactId> |
| <version>${pom.version}</version> |
| </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> |
| </dependency> |
| |
| <dependency> |
| <groupId>xml-apis</groupId> |
| <artifactId>xml-apis</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-beanutils</groupId> |
| <artifactId>commons-beanutils</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-collections</groupId> |
| <artifactId>commons-collections</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-digester</groupId> |
| <artifactId>commons-digester</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-el</groupId> |
| <artifactId>commons-el</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-logging</groupId> |
| <artifactId>commons-logging</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-modeler</groupId> |
| <artifactId>commons-modeler</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>regexp</groupId> |
| <artifactId>regexp</artifactId> |
| </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> |
| |
| <build> |
| <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> |
| |
| <!-- |
| HACK: Need to include the Apache m1 snapshot repo to pick up commons-modeler |
| --> |
| <repositories> |
| <repository> |
| <id>apache-snapshots-m1</id> |
| <name>Apache Maven 1 Snapshots Repository</name> |
| <url>http://people.apache.org/repo/m1-snapshot-repository</url> |
| <layout>legacy</layout> |
| <snapshots> |
| <enabled>true</enabled> |
| <updatePolicy>daily</updatePolicy> |
| <checksumPolicy>ignore</checksumPolicy> |
| </snapshots> |
| <releases> |
| <enabled>true</enabled> |
| </releases> |
| </repository> |
| </repositories> |
| |
| </project> |
| |