-
Notifications
You must be signed in to change notification settings - Fork 9
/
pom.xml
111 lines (104 loc) · 3.93 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
104
105
106
107
108
109
110
111
<?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.hubspot</groupId>
<artifactId>basepom</artifactId>
<version>25.1</version>
</parent>
<groupId>com.hubspot.dropwizard.example</groupId>
<artifactId>dropwizard-guicier-example</artifactId>
<version>0.1-SNAPSHOT</version>
<properties>
<basepom.shaded.main-class>com.hubspot.dropwizard.example.ExampleApplication</basepom.shaded.main-class>
<basepom.check.skip-pom-lint>true</basepom.check.skip-pom-lint>
<dep.assertj.version>3.9.1</dep.assertj.version>
<dep.classmate.version>1.3.1</dep.classmate.version>
<dep.commons-lang3.version>3.7</dep.commons-lang3.version>
<dep.dropwizard-metrics.version>4.0.2</dep.dropwizard-metrics.version>
<dep.guava.version>24.0-jre</dep.guava.version>
<dep.hibernate-validator.version>5.4.2.Final</dep.hibernate-validator.version>
<dep.hk2.version>2.5.0-b32</dep.hk2.version>
<dep.httpclient.version>4.5.5</dep.httpclient.version>
<dep.httpcore.version>4.4.9</dep.httpcore.version>
<dep.jackson.version>2.9.6</dep.jackson.version>
<dep.jackson-databind.version>2.9.6</dep.jackson-databind.version>
<dep.jboss-logging.version>3.3.0.Final</dep.jboss-logging.version>
<dep.jersey2.version>2.25.1</dep.jersey2.version>
<dep.jetty.version>9.4.11.v20180605</dep.jetty.version>
<dep.joda.version>2.9.9</dep.joda.version>
<dep.logback.version>1.2.3</dep.logback.version>
<dep.objenesis.version>2.6</dep.objenesis.version>
<dep.slf4j.version>1.7.25</dep.slf4j.version>
<dropwizard.version>1.3.5</dropwizard.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.hubspot.dropwizard</groupId>
<artifactId>dropwizard-guicier</artifactId>
<version>1.3.5.0</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>${dep.jackson.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-core</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-lifecycle</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-servlets</artifactId>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-healthchecks</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
</dependency>
<dependency>
<groupId>com.hubspot.dropwizard</groupId>
<artifactId>dropwizard-guicier</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
</dependencies>
</project>