1 <?xml version="1.0" encoding="UTF-8"?> 2 <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/xsd/maven-4.0.0.xsd"> 3 <parent> 4 <artifactId>moskito-integration</artifactId> 5 <groupId>net.anotheria</groupId> 6 <version>2.10.0</version> 7 </parent> 8 9 <modelVersion>4.0.0</modelVersion> 10 <artifactId>moskito-ehcache</artifactId> 11 <version>2.10.0</version> 12 <name>moskito ehcache integration</name> 13 14 <dependencies> 15 <dependency> 16 <groupId>net.sf.ehcache</groupId> 17 <artifactId>ehcache-core</artifactId> 18 <version>2.6.5</version> 19 <scope>provided</scope> 20 </dependency> 21 <dependency> 22 <groupId>net.anotheria</groupId> 23 <artifactId>moskito-core</artifactId> 24 <version>${project.version}</version> 25 <scope>provided</scope> 26 </dependency> 27 <dependency> 28 <groupId>net.anotheria</groupId> 29 <artifactId>moskito-webui</artifactId> 30 <version>${project.version}</version> 31 <scope>provided</scope> 32 </dependency> 33 </dependencies> 34 35 </project>