52 lines
1.7 KiB
XML
52 lines
1.7 KiB
XML
|
<?xml version="1.0"?>
|
||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>com.iluwatar</groupId>
|
||
|
<artifactId>java-design-patterns</artifactId>
|
||
|
<version>1.7.0</version>
|
||
|
</parent>
|
||
|
<artifactId>caching</artifactId>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mongodb</groupId>
|
||
|
<artifactId>mongodb-driver</artifactId>
|
||
|
<version>3.0.4</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mongodb</groupId>
|
||
|
<artifactId>mongodb-driver-core</artifactId>
|
||
|
<version>3.0.4</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mongodb</groupId>
|
||
|
<artifactId>bson</artifactId>
|
||
|
<version>3.0.4</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<!--
|
||
|
Due to the use of MongoDB in the test of this pattern, TRAVIS and/or MAVEN might fail if the DB connection is
|
||
|
not open for the JUnit test. To avoid disrupting the compilation process, the surefire plug-in was used
|
||
|
to SKIP the running of the JUnit tests for this pattern. To RE-ACTIVATE the running of the tests, change the
|
||
|
skipTests (below) flag to 'false'.
|
||
|
-->
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<version>2.19</version>
|
||
|
<configuration>
|
||
|
<skipTests>true</skipTests>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|