<?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>server</artifactId> <groupId>com.ovea.tajin.server</groupId> <version>1.0.b2</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>tajin-server-tomcat6</artifactId> <name>Tajin :: Servers :: Tomcat 6</name> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.ovea.tajin.server</groupId> <artifactId>tajin-server-core</artifactId> <version>1.0.b2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>catalina</artifactId> <version>6.0.36</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>catalina-ha</artifactId> <version>6.0.36</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>dbcp</artifactId> <version>6.0.36</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>juli</artifactId> <version>6.0.36</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>el-api</artifactId> <version>6.0.36</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>jsp-api</artifactId> <version>6.0.36</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>servlet-api</artifactId> <version>6.0.36</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>jasper</artifactId> <version>6.0.36</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>ecj</artifactId> <groupId>org.eclipse.jdt.core.compiler</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>jasper-el</artifactId> <version>6.0.36</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jdt.core.compiler</groupId> <artifactId>ecj</artifactId> <version>3.5.1</version> <scope>provided</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.36</tomcatVersion> </properties> </project>
<dependency> <groupId>com.ovea.tajin.server</groupId> <artifactId>tajin-server-tomcat6</artifactId> <version>1.0.b2</version> </dependency>
com.ovea.tajin.server:tajin-server-tomcat6:1.0.b2