1 <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"> 2 3 <parent> 4 <groupId>net.anotheria</groupId> 5 <artifactId>moskito</artifactId> 6 <version>2.10.0</version> 7 </parent> 8 9 <modelVersion>4.0.0</modelVersion> 10 <artifactId>moskito-web</artifactId> 11 <version>2.10.0</version> 12 <name>moskito web support</name> 13 14 <dependencies> 15 <dependency> 16 <groupId>org.slf4j</groupId> 17 <artifactId>slf4j-api</artifactId> 18 </dependency> 19 <dependency> 20 <groupId>ch.qos.logback</groupId> 21 <artifactId>logback-classic</artifactId> 22 <scope>test</scope> 23 </dependency> 24 <dependency> 25 <groupId>net.anotheria</groupId> 26 <artifactId>moskito-core</artifactId> 27 <version>${project.version}</version> 28 </dependency> 29 <dependency> 30 <groupId>javax.servlet</groupId> 31 <artifactId>javax.servlet-api</artifactId> 32 <scope>provided</scope> 33 </dependency> 34 <dependency> 35 <groupId>struts</groupId> 36 <artifactId>struts</artifactId> 37 <version>1.2.9</version> 38 <scope>provided</scope> 39 </dependency> 40 <!-- only mock support needed, therefore testing scope --> 41 <dependency> 42 <groupId>net.anotheria</groupId> 43 <artifactId>ano-prise</artifactId> 44 <scope>test</scope> 45 </dependency> 46 </dependencies> 47 </project>