|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>com.github.derjust</groupId> |
5 | 5 | <artifactId>spring-data-dynamodb</artifactId> |
6 | | - <version>4.5.0</version> |
7 | | - <name>Spring Data DynamoDb</name> |
8 | | - <description>Spring Data module providing support for DynamoDb repositories.</description> |
| 6 | + <version>4.5.1-SNAPSHOT</version> |
| 7 | + <name>Spring Data DynamoDB</name> |
| 8 | + <description>The primary goal of the Spring Data project is to make it easier to build Spring-powered applications that use data access technologies. This module deals with enhanced support for Amazon DynamoDB based data access layers.</description> |
9 | 9 | <url>http://github.com/derjust/spring-data-dynamodb</url> |
10 | 10 |
|
11 | 11 | <licenses> |
|
19 | 19 | <spring.version>4.3.6.RELEASE</spring.version> |
20 | 20 | <spring-data.version>Ingalls-RELEASE</spring-data.version> |
21 | 21 | <hibernate-validator.version>5.2.4.Final</hibernate-validator.version> |
22 | | - <aws-java-sdk.version>1.11.93</aws-java-sdk.version> |
| 22 | + <aws-java-sdk.version>1.11.232</aws-java-sdk.version> |
23 | 23 | <junit.version>4.12</junit.version> |
24 | 24 | <mockito.version>1.10.19</mockito.version> |
25 | 25 |
|
26 | 26 | <cdi.version>1.2</cdi.version> |
27 | | - <logback.version>1.1.7</logback.version> |
| 27 | + <logback.version>1.2.3</logback.version> |
28 | 28 |
|
29 | 29 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
30 | 30 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
81 | 81 | <artifactId>logback-classic</artifactId> |
82 | 82 | <version>${logback.version}</version> |
83 | 83 | </dependency> |
| 84 | + |
| 85 | + <!-- AWS SDK comes with dependencies to 1.2 and 1.1.3 therefore locking down on 1.2 --> |
| 86 | + <dependency> |
| 87 | + <groupId>commons-logging</groupId> |
| 88 | + <artifactId>commons-logging</artifactId> |
| 89 | + <version>1.2</version> |
| 90 | + </dependency> |
84 | 91 | </dependencies> |
85 | 92 | </dependencyManagement> |
86 | 93 |
|
|
190 | 197 | </plugins> |
191 | 198 | </pluginManagement> |
192 | 199 | <plugins> |
| 200 | + <plugin> |
| 201 | + <groupId>org.sonatype.plugins</groupId> |
| 202 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 203 | + <version>1.6.7</version> |
| 204 | + <extensions>true</extensions> |
| 205 | + <configuration> |
| 206 | + <serverId>ossrh</serverId> |
| 207 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 208 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 209 | + </configuration> |
| 210 | + </plugin> |
193 | 211 | <plugin> |
194 | 212 | <groupId>org.jacoco</groupId> |
195 | 213 | <artifactId>jacoco-maven-plugin</artifactId> |
196 | | - <version>0.7.5.201505241946</version> |
| 214 | + <version>0.7.9</version> |
197 | 215 | <executions> |
198 | 216 | <execution> |
199 | 217 | <goals> |
|
255 | 273 | <plugin> |
256 | 274 | <groupId>org.apache.maven.plugins</groupId> |
257 | 275 | <artifactId>maven-release-plugin</artifactId> |
258 | | - <version>2.5</version> |
| 276 | + <version>2.5.3</version> |
259 | 277 | <configuration> |
| 278 | + <tagNameFormat>v@{project.version}</tagNameFormat> |
260 | 279 | <autoVersionSubmodules>true</autoVersionSubmodules> |
261 | 280 | <useReleaseProfile>false</useReleaseProfile> |
262 | 281 | <releaseProfiles>release</releaseProfiles> |
|
309 | 328 | <plugin> |
310 | 329 | <groupId>com.jcabi</groupId> |
311 | 330 | <artifactId>jcabi-dynamodb-maven-plugin</artifactId> |
312 | | - <version>0.8</version> |
| 331 | + <version>0.9.1</version> |
313 | 332 | <configuration> |
314 | 333 | <tables> |
315 | 334 | <table>src/test/resources/user_table.json</table> |
|
366 | 385 | <url>https://github.com/derjust/spring-data-dynamodb</url> |
367 | 386 | <connection>scm:git:ssh://github.com/derjust/spring-data-dynamodb.git</connection> |
368 | 387 | <developerConnection>scm:git:ssh://git@github.com/derjust/spring-data-dynamodb.git</developerConnection> |
369 | | - <tag>spring-data-dynamodb-4.5.0</tag> |
| 388 | + <tag>HEAD</tag> |
370 | 389 | </scm> |
371 | 390 |
|
372 | 391 | <repositories> |
|
429 | 448 | </execution> |
430 | 449 | </executions> |
431 | 450 | </plugin> |
| 451 | + <plugin> |
| 452 | + <!-- Deploy the web site --> |
| 453 | + <groupId>com.github.github</groupId> |
| 454 | + <artifactId>site-maven-plugin</artifactId> |
| 455 | + <version>0.9</version> |
| 456 | + <executions> |
| 457 | + <execution> |
| 458 | + <goals> |
| 459 | + <goal>site</goal> |
| 460 | + </goals> |
| 461 | + <!-- select the Maven phase in which the plugin will be executed --> |
| 462 | + <phase>site-deploy</phase> |
| 463 | + <configuration> |
| 464 | + <!-- Plugin configuration ges here --> |
| 465 | + |
| 466 | + <server>github</server> |
| 467 | + |
| 468 | + <!-- The commit message --> |
| 469 | + <message>Building site</message> |
| 470 | + <!-- The location where the site is uploaded --> |
| 471 | + <path>${site.path}</path> |
| 472 | + <!-- Use merge or override the content --> |
| 473 | + <merge>true</merge> |
| 474 | + </configuration> |
| 475 | + </execution> |
| 476 | + </executions> |
| 477 | + </plugin> |
432 | 478 | </plugins> |
433 | 479 | </build> |
434 | 480 | </profile> |
|
441 | 487 | <timezone>0</timezone> |
442 | 488 | </developer> |
443 | 489 | <developer> |
444 | | - <name>Sebastian Just</name> |
| 490 | + <id>derjust</id> |
| 491 | + <name>Sebastian J</name> |
445 | 492 | <email>zeeman@zeeman.de</email> |
| 493 | + <timezone>America/New_York</timezone> |
446 | 494 | </developer> |
447 | 495 | </developers> |
448 | 496 |
|
| 497 | + <reporting> |
| 498 | + <plugins> |
| 499 | + <plugin> |
| 500 | + <groupId>org.apache.maven.plugins</groupId> |
| 501 | + <artifactId>maven-changes-plugin</artifactId> |
| 502 | + <version>2.12.1</version> |
| 503 | + <reportSets> |
| 504 | + <reportSet> |
| 505 | + <reports> |
| 506 | + <report>changes-report</report> |
| 507 | + </reports> |
| 508 | + </reportSet> |
| 509 | + </reportSets> |
| 510 | + </plugin> |
| 511 | + </plugins> |
| 512 | + </reporting> |
| 513 | + |
449 | 514 | <distributionManagement> |
450 | 515 | <snapshotRepository> |
451 | 516 | <id>ossrh</id> |
|
456 | 521 | <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
457 | 522 | </repository> |
458 | 523 | </distributionManagement> |
| 524 | + <issueManagement> |
| 525 | + <system>GitHub</system> |
| 526 | + <url>https://github.com/derjust/spring-data-dynamodb/issues</url> |
| 527 | + </issueManagement> |
459 | 528 |
|
460 | 529 | </project> |
0 commit comments