<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>testatoo-container</artifactId> <groupId>org.testatoo.container</groupId> <version>1.1.ga</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>testatoo-container-tomcat6</artifactId> <name>testatoo-container-tomcat6</name> <description>Tomcat 6</description> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <id>standard</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <excludes> <exclude>org.testatoo.container:testatoo-container-core</exclude> </excludes> </artifactSet> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.testatoo.container</groupId> <artifactId>testatoo-container-core</artifactId> <version>1.1.ga</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.1.116</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.1</version> <scope>test</scope> </dependency> <dependency> <groupId>httpunit</groupId> <artifactId>httpunit</artifactId> <version>1.6.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>servlet-api</artifactId> <groupId>javax.servlet</groupId> </exclusion> <exclusion> <artifactId>jtidy</artifactId> <groupId>jtidy</groupId> </exclusion> </exclusions> </dependency> </dependencies> <properties> <tomcatVersion>6.0.32</tomcatVersion> </properties> </project>
<dependency> <groupId>org.testatoo.container</groupId> <artifactId>testatoo-container-tomcat6</artifactId> <version>1.1.ga</version> </dependency>
org.testatoo.container:testatoo-container-tomcat6:1.1.ga