/
githubmirror
/
java-design-patterns
Обзор
Документация
Войти
/
githubmirror
/
java-design-patterns
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
1.7.0
caching/pom.xml
51 строка
2 KB
waisuan
Issue #273: Changed DB to internal Java data structure to avoid compilation errors + decrease in code coverage
28 окт 2015, 19:57
28 окт 2015, 19:57
d0f5009
Код
Авторство
О чём код?
<?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 ACTIVATE the running of the tests, change the skipTests (below) flag to 'false' and vice-versa. --> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.19</version> <configuration> <skipTests>false</skipTests> </configuration> </plugin> </plugins> </build> </project>