|
18 | 18 | <dynamodb-local.port>4567</dynamodb-local.port>
|
19 | 19 | <dynamodb-local.endpoint>http://localhost:${dynamodb-local.port}</dynamodb-local.endpoint>
|
20 | 20 | <jdk.version>1.8</jdk.version>
|
21 |
| - <aws.java.sdk.version>1.11.281</aws.java.sdk.version> |
| 21 | + <aws.java.sdk.version>1.11.336</aws.java.sdk.version> |
22 | 22 | <jackson.version>2.6.6</jackson.version>
|
23 | 23 | <janusgraph.version>0.2.0</janusgraph.version>
|
24 | 24 | <tinkerpop.version>3.2.6</tinkerpop.version>
|
|
30 | 30 | <maven.resources.plugin.version>3.0.2</maven.resources.plugin.version>
|
31 | 31 | <exec.maven.plugin.version>1.6.0</exec.maven.plugin.version>
|
32 | 32 | <download.maven.plugin.version>1.2.1</download.maven.plugin.version>
|
33 |
| - <slf4j.version>1.7.25</slf4j.version> |
| 33 | + <slf4j.version>1.7.12</slf4j.version> |
34 | 34 | <opencsv.version>3.8</opencsv.version>
|
35 | 35 | <metrics3.version>3.0.1</metrics3.version>
|
36 | 36 | <commons.logging.version>1.1.1</commons.logging.version>
|
37 | 37 | <hadoop.version>2.2.0</hadoop.version>
|
38 |
| - <mockito.version>1.9.5</mockito.version> |
| 38 | + <mockito.version>1.8.5</mockito.version> |
39 | 39 | <lombok.version>1.16.18</lombok.version>
|
40 | 40 | <docker.maven.version>0.4.13</docker.maven.version>
|
| 41 | + <commonsio.version>2.3</commonsio.version> |
| 42 | + <guava.version>18.0</guava.version> |
41 | 43 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
| 44 | + <maven-enforcer-plugin.version>3.0.0-M1</maven-enforcer-plugin.version> |
42 | 45 | <include.category></include.category>
|
43 | 46 | <exclude.category></exclude.category>
|
44 | 47 | <test.excluded.groups>org.janusgraph.testcategory.MemoryTests,org.janusgraph.testcategory.PerformanceTests,org.janusgraph.testcategory.BrittleTests,org.janusgraph.testcategory.OrderedKeyStoreTests,org.janusgraph.testcategory.SerialTests</test.excluded.groups>
|
45 | 48 | <download.skip.cache>false</download.skip.cache>
|
46 | 49 | <download.force.overwrite>false</download.force.overwrite>
|
| 50 | + <junit.version>4.12</junit.version> |
47 | 51 | </properties>
|
48 | 52 | <developers>
|
49 | 53 | <developer>
|
|
122 | 126 | <groupId>com.opencsv</groupId>
|
123 | 127 | <artifactId>opencsv</artifactId>
|
124 | 128 | <version>${opencsv.version}</version>
|
| 129 | + <exclusions> |
| 130 | + <exclusion> |
| 131 | + <groupId>org.apache.commons</groupId> |
| 132 | + <artifactId>commons-lang3</artifactId> |
| 133 | + </exclusion> |
| 134 | + </exclusions> |
125 | 135 | </dependency>
|
126 | 136 | <dependency>
|
127 | 137 | <groupId>org.slf4j</groupId>
|
|
138 | 148 | <dependency>
|
139 | 149 | <groupId>junit</groupId>
|
140 | 150 | <artifactId>junit</artifactId>
|
141 |
| - <version>4.11</version> |
| 151 | + <version>${junit.version}</version> |
142 | 152 | <scope>test</scope>
|
143 | 153 | </dependency>
|
144 | 154 | <!-- for Gremlin console -->
|
|
183 | 193 | <dependency>
|
184 | 194 | <groupId>com.google.guava</groupId>
|
185 | 195 | <artifactId>guava</artifactId>
|
186 |
| - <version>18.0</version> |
| 196 | + <version>${guava.version}</version> |
187 | 197 | </dependency>
|
188 | 198 | <dependency>
|
189 | 199 | <groupId>org.mockito</groupId>
|
|
196 | 206 | <artifactId>mockito-core</artifactId>
|
197 | 207 | <version>${mockito.version}</version>
|
198 | 208 | <scope>test</scope>
|
| 209 | + <exclusions> |
| 210 | + <exclusion> |
| 211 | + <groupId>org.hamcrest</groupId> |
| 212 | + <artifactId>hamcrest-core</artifactId> |
| 213 | + </exclusion> |
| 214 | + <exclusion> |
| 215 | + <groupId>org.objenesis</groupId> |
| 216 | + <artifactId>objenesis</artifactId> |
| 217 | + </exclusion> |
| 218 | + </exclusions> |
199 | 219 | </dependency>
|
200 | 220 | <dependency>
|
201 | 221 | <groupId>org.projectlombok</groupId>
|
|
206 | 226 | <groupId>com.google.code.findbugs</groupId>
|
207 | 227 | <artifactId>findbugs</artifactId>
|
208 | 228 | <version>3.0.1</version>
|
| 229 | + <exclusions> |
| 230 | + <exclusion> |
| 231 | + <groupId>com.google.code.findbugs</groupId> |
| 232 | + <artifactId>jsr305</artifactId> |
| 233 | + </exclusion> |
| 234 | + </exclusions> |
209 | 235 | </dependency>
|
210 | 236 | </dependencies>
|
211 | 237 | <dependencyManagement>
|
|
225 | 251 | <artifactId>jackson-dataformat-cbor</artifactId>
|
226 | 252 | <version>${jackson.version}</version>
|
227 | 253 | </dependency>
|
| 254 | + <dependency> |
| 255 | + <groupId>junit</groupId> |
| 256 | + <artifactId>junit</artifactId> |
| 257 | + <version>${junit.version}</version> |
| 258 | + </dependency> |
| 259 | + <dependency> |
| 260 | + <groupId>commons-io</groupId> |
| 261 | + <artifactId>commons-io</artifactId> |
| 262 | + <version>${commonsio.version}</version> |
| 263 | + </dependency> |
| 264 | + <dependency> |
| 265 | + <groupId>commons-collections</groupId> |
| 266 | + <artifactId>commons-collections</artifactId> |
| 267 | + <version>3.2.2</version> |
| 268 | + </dependency> |
| 269 | + <dependency> |
| 270 | + <groupId>commons-codec</groupId> |
| 271 | + <artifactId>commons-codec</artifactId> |
| 272 | + <version>1.7</version> |
| 273 | + </dependency> |
| 274 | + <dependency> |
| 275 | + <groupId>commons-logging</groupId> |
| 276 | + <artifactId>commons-logging</artifactId> |
| 277 | + <version>1.1.3</version> |
| 278 | + </dependency> |
| 279 | + <dependency> |
| 280 | + <groupId>com.codahale.metrics</groupId> |
| 281 | + <artifactId>metrics-core</artifactId> |
| 282 | + <version>${metrics3.version}</version> |
| 283 | + </dependency> |
| 284 | + <dependency> |
| 285 | + <groupId>com.codahale.metrics</groupId> |
| 286 | + <artifactId>metrics-graphite</artifactId> |
| 287 | + <version>${metrics3.version}</version> |
| 288 | + </dependency> |
| 289 | + <dependency> |
| 290 | + <groupId>com.codahale.metrics</groupId> |
| 291 | + <artifactId>metrics-ganglia</artifactId> |
| 292 | + <version>${metrics3.version}</version> |
| 293 | + </dependency> |
| 294 | + <dependency> |
| 295 | + <groupId>org.slf4j</groupId> |
| 296 | + <artifactId>slf4j-api</artifactId> |
| 297 | + <version>${slf4j.version}</version> |
| 298 | + </dependency> |
| 299 | + <dependency> |
| 300 | + <groupId>com.google.guava</groupId> |
| 301 | + <artifactId>guava</artifactId> |
| 302 | + <version>${guava.version}</version> |
| 303 | + </dependency> |
| 304 | + <dependency> |
| 305 | + <groupId>com.carrotsearch</groupId> |
| 306 | + <artifactId>junit-benchmarks</artifactId> |
| 307 | + <version>0.7.0</version> |
| 308 | + </dependency> |
| 309 | + <dependency> |
| 310 | + <groupId>org.mockito</groupId> |
| 311 | + <artifactId>mockito-core</artifactId> |
| 312 | + <version>${mockito.version}</version> |
| 313 | + </dependency> |
228 | 314 | </dependencies>
|
229 | 315 | </dependencyManagement>
|
230 | 316 | <build>
|
|
335 | 421 | <artifactId>maven-resources-plugin</artifactId>
|
336 | 422 | <version>${maven.resources.plugin.version}</version>
|
337 | 423 | </plugin>
|
| 424 | + <plugin> |
| 425 | + <groupId>org.apache.maven.plugins</groupId> |
| 426 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 427 | + <version>${maven-enforcer-plugin.version}</version> |
| 428 | + <executions> |
| 429 | + <execution> |
| 430 | + <id>enforce</id> |
| 431 | + <configuration> |
| 432 | + <rules> |
| 433 | + <dependencyConvergence/> |
| 434 | + </rules> |
| 435 | + </configuration> |
| 436 | + <goals> |
| 437 | + <goal>enforce</goal> |
| 438 | + </goals> |
| 439 | + </execution> |
| 440 | + </executions> |
| 441 | + </plugin> |
338 | 442 | </plugins>
|
339 | 443 | </build>
|
340 | 444 | <profiles>
|
|
0 commit comments