-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpom.xml
103 lines (97 loc) · 4.08 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.washingtonpost</groupId>
<artifactId>wp-oss-parent-pom</artifactId>
<version>0.0.8</version>
</parent>
<groupId>com.washingtonpost.dropwizard</groupId>
<artifactId>dropwizard-mongo</artifactId>
<version>4.0.8-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<version.assertj>2.2.0</version.assertj>
<version.dropwizard.guice>0.8.4.0</version.dropwizard.guice>
<version.junit>4.12</version.junit>
<version.mongo.driver>3.12.10</version.mongo.driver>
<version.wp.checkstyle>2.0</version.wp.checkstyle>
</properties>
<scm>
<connection>scm:git:[email protected]:washingtonpost/dropwizard-mongo-module.git</connection>
<developerConnection>scm:git:[email protected]:washingtonpost/dropwizard-mongo-module.git</developerConnection>
<url>https://github.com/washingtonpost/dropwizard-mongo-module</url>
<tag>4.0.6</tag>
</scm>
<dependencies>
<dependency>
<groupId>com.hubspot.dropwizard</groupId>
<artifactId>dropwizard-guice</artifactId>
<version>${version.dropwizard.guice}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>${version.mongo.driver}</version>
<!-- Your DropWizard app should define the driver, or accept what comes in through a
supporting library like mongojack -->
<scope>provided</scope>
</dependency>
<!--
TEST SCOPED dependencies
-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.junit}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${version.maven.checkstyle.plugin}</version>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<configuration>
<configLocation>checkstyle.xml</configLocation>
<encoding>${project.build.sourceEncoding}</encoding>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
<linkXRef>false</linkXRef>
</configuration>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.washingtonpost</groupId>
<artifactId>wp-java-checkstyle</artifactId>
<version>${version.wp.checkstyle}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>