|
10 | 10 | <artifactId>swagger-java-dropwizard-sample-app</artifactId>
|
11 | 11 | <packaging>jar</packaging>
|
12 | 12 | <name>swagger-java-dropwizard-app</name>
|
13 |
| - <version>1.0.0</version> |
| 13 | + <version>2.0.0</version> |
14 | 14 | <build>
|
15 | 15 | <sourceDirectory>src/main/java</sourceDirectory>
|
16 | 16 | <plugins>
|
|
105 | 105 | </plugin>
|
106 | 106 | </plugins>
|
107 | 107 | </build>
|
| 108 | + <dependencyManagement> |
| 109 | + <dependencies> |
| 110 | + <dependency> |
| 111 | + <groupId>io.dropwizard</groupId> |
| 112 | + <artifactId>dropwizard-bom</artifactId> |
| 113 | + <version>1.0.2</version> |
| 114 | + <type>pom</type> |
| 115 | + <scope>import</scope> |
| 116 | + </dependency> |
| 117 | + </dependencies> |
| 118 | + </dependencyManagement> |
108 | 119 | <dependencies>
|
109 | 120 | <dependency>
|
110 |
| - <groupId>io.swagger</groupId> |
111 |
| - <artifactId>swagger-jersey-jaxrs</artifactId> |
112 |
| - <version>${swagger-version}</version> |
113 |
| - <scope>compile</scope> |
114 |
| - <exclusions> |
115 |
| - <exclusion> |
116 |
| - <groupId>com.sun.jersey</groupId> |
117 |
| - <artifactId>*</artifactId> |
118 |
| - </exclusion> |
119 |
| - </exclusions> |
| 121 | + <groupId>org.slf4j</groupId> |
| 122 | + <artifactId>slf4j-api</artifactId> |
| 123 | + <version>1.7.21</version> |
120 | 124 | </dependency>
|
121 | 125 | <dependency>
|
122 | 126 | <groupId>io.dropwizard</groupId>
|
123 | 127 | <artifactId>dropwizard-core</artifactId>
|
124 |
| - <version>0.7.1</version> |
125 |
| - <scope>compile</scope> |
126 |
| - <exclusions> |
127 |
| - <exclusion> |
128 |
| - <groupId>com.fasterxml.jackson.core</groupId> |
129 |
| - <artifactId>*</artifactId> |
130 |
| - </exclusion> |
131 |
| - <exclusion> |
132 |
| - <groupId>com.fasterxml.jackson.datatype</groupId> |
133 |
| - <artifactId>*</artifactId> |
134 |
| - </exclusion> |
135 |
| - <exclusion> |
136 |
| - <groupId>com.fasterxml.jackson.dataformat</groupId> |
137 |
| - <artifactId>*</artifactId> |
138 |
| - </exclusion> |
139 |
| - </exclusions> |
140 |
| - </dependency> |
141 |
| - <dependency> |
142 |
| - <groupId>org.scalatest</groupId> |
143 |
| - <artifactId>scalatest_2.10</artifactId> |
144 |
| - <scope>test</scope> |
145 |
| - </dependency> |
146 |
| - <dependency> |
147 |
| - <groupId>com.fasterxml.jackson.datatype</groupId> |
148 |
| - <artifactId>jackson-datatype-guava</artifactId> |
149 |
| - <version>2.4.2</version> |
150 |
| - </dependency> |
151 |
| - <dependency> |
152 |
| - <groupId>junit</groupId> |
153 |
| - <artifactId>junit</artifactId> |
154 |
| - <scope>test</scope> |
155 | 128 | </dependency>
|
156 | 129 | <dependency>
|
157 |
| - <groupId>com.sun.jersey</groupId> |
158 |
| - <artifactId>jersey-client</artifactId> |
159 |
| - <version>1.18.1</version> |
160 |
| - </dependency> |
161 |
| - <dependency> |
162 |
| - <groupId>com.sun.jersey</groupId> |
163 |
| - <artifactId>jersey-core</artifactId> |
164 |
| - <version>1.18.1</version> |
165 |
| - </dependency> |
166 |
| - <dependency> |
167 |
| - <groupId>com.sun.jersey</groupId> |
168 |
| - <artifactId>jersey-json</artifactId> |
169 |
| - <version>1.18.1</version> |
170 |
| - </dependency> |
171 |
| - <dependency> |
172 |
| - <groupId>com.sun.jersey</groupId> |
173 |
| - <artifactId>jersey-servlet</artifactId> |
174 |
| - <version>1.18.1</version> |
| 130 | + <groupId>io.swagger</groupId> |
| 131 | + <artifactId>swagger-jersey2-jaxrs</artifactId> |
| 132 | + <version>1.5.10</version> |
| 133 | + <scope>compile</scope> |
175 | 134 | </dependency>
|
176 | 135 | </dependencies>
|
177 | 136 | </project>
|
0 commit comments