|
4 | 4 | <groupId>com.github.derjust</groupId>
|
5 | 5 | <artifactId>spring-data-dynamodb</artifactId>
|
6 | 6 | <version>5.0.1-SNAPSHOT</version>
|
7 |
| - <name>Spring Data DynamoDb</name> |
8 |
| - <description>Spring Data module providing support for DynamoDb repositories.</description> |
| 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>
|
|
21 | 21 | <hibernate-validator.version>5.2.4.Final</hibernate-validator.version>
|
22 | 22 | <aws-java-sdk.version>1.11.232</aws-java-sdk.version>
|
23 | 23 | <junit.version>4.12</junit.version>
|
24 |
| - <mockito.version>1.10.19</mockito.version> |
| 24 | + <mockito.version>2.13.0</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 |
|
|
441 | 448 | </execution>
|
442 | 449 | </executions>
|
443 | 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> |
444 | 478 | </plugins>
|
445 | 479 | </build>
|
446 | 480 | </profile>
|
|
453 | 487 | <timezone>0</timezone>
|
454 | 488 | </developer>
|
455 | 489 | <developer>
|
456 |
| - <name>Sebastian Just</name> |
| 490 | + <id>derjust</id> |
| 491 | + <name>Sebastian J</name> |
457 | 492 |
|
458 | 493 | <timezone>America/New_York</timezone>
|
459 | 494 | </developer>
|
460 | 495 | </developers>
|
461 | 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 | + |
462 | 514 | <distributionManagement>
|
463 | 515 | <snapshotRepository>
|
464 | 516 | <id>ossrh</id>
|
|
469 | 521 | <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
470 | 522 | </repository>
|
471 | 523 | </distributionManagement>
|
| 524 | + <issueManagement> |
| 525 | + <system>GitHub</system> |
| 526 | + <url>https://github.com/derjust/spring-data-dynamodb/issues</url> |
| 527 | + </issueManagement> |
472 | 528 |
|
473 | 529 | </project>
|
0 commit comments