geronimo-tomcat-builder
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.geronimo.modules</groupId> <artifactId>geronimo-tomcat-builder</artifactId> <version>1.2-beta</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?><project> <parent> <artifactId>modules</artifactId> <groupId>org.apache.geronimo.modules</groupId> <version>1.2-beta</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>geronimo-tomcat-builder</artifactId> <name>Geronimo :: Tomcat :: Builder</name> <version>1.2-beta</version> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemProperties> <property> <name>java.endorsed.dirs</name> <value>${project.build.directory}/endorsed</value> </property> <property> <name>java.security.auth.login.config</name> <value>src/test/resources/data/login.config</value> </property> </systemProperties> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>xmlbeans-maven-plugin</artifactId> <configuration> <sourceSchemas>geronimo-tomcat-1.2.xsd,geronimo-tomcat-config-1.0.xsd</sourceSchemas> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>dependency-maven-plugin</artifactId> <executions> <execution> <id>copy-endorsed-jars</id> <phase>process-test-resources</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> </artifactItem> <artifactItem> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> </artifactItem> </artifactItems> <outputDirectory>${project.build.directory}/endorsed</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>copy-xmlbeans-for-clover</id> <phase>generate-resources</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <mkdir dir="${pom.basedir}/target/clover/classes"></mkdir> <copy todir="${pom.basedir}/target/clover/classes"> <fileset dir="${pom.basedir}/target/classes"> <include name="schemaorg_apache_xmlbeans/**"></include> </fileset> </copy> </tasks> </configuration> </execution> <execution> <id>setup-test-environment</id> <phase>process-test-resources</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <copy file="src/test/data/web.xml" todir="${project.build.directory}/var/catalina/conf"></copy> <copy todir="${project.build.directory}/var/catalina/webapps"> <fileset dir="src/test/resources/deployables"> <include name="war1/**"></include> <include name="war3/**"></include> <include name="war4/**"></include> </fileset> </copy> </tasks> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>${pom.groupId}</groupId> <artifactId>geronimo-naming-builder</artifactId> <version>1.2-beta</version> </dependency> <dependency> <groupId>${pom.groupId}</groupId> <artifactId>geronimo-tomcat</artifactId> <version>1.2-beta</version> </dependency> <dependency> <groupId>${pom.groupId}</groupId> <artifactId>geronimo-service-builder</artifactId> <version>1.2-beta</version> </dependency> <dependency> <groupId>${pom.groupId}</groupId> <artifactId>geronimo-j2ee-builder</artifactId> <version>1.2-beta</version> </dependency> <dependency> <groupId>${pom.groupId}</groupId> <artifactId>geronimo-security-builder</artifactId> <version>1.2-beta</version> </dependency> <dependency> <groupId>${pom.groupId}</groupId> <artifactId>geronimo-web-builder</artifactId> <version>1.2-beta</version> </dependency> <dependency> <groupId>xmlbeans</groupId> <artifactId>xbean</artifactId> </dependency> <dependency> <groupId>stax</groupId> <artifactId>stax-api</artifactId> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-jsp_2.0_spec</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <status>deployed</status> </distributionManagement> </project>