|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <!-- |
3 | 3 |
|
4 | | - Copyright © 2013 spring-data-dynamodb (https://github.com/derjust/spring-data-dynamodb) |
| 4 | + Copyright © 2018 spring-data-dynamodb (https://github.com/spring-data-dynamodb/spring-data-dynamodb) |
5 | 5 |
|
6 | 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
7 | 7 | you may not use this file except in compliance with the License. |
|
18 | 18 | --> |
19 | 19 | <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"> |
20 | 20 | <modelVersion>4.0.0</modelVersion> |
21 | | - <groupId>com.github.derjust</groupId> |
| 21 | + <groupId>com.github.spring-data-dynamodb</groupId> |
22 | 22 | <artifactId>spring-data-dynamodb</artifactId> |
23 | 23 | <version>4.5.5-SNAPSHOT</version> |
24 | 24 | <name>Spring Data DynamoDB</name> |
25 | | - <inceptionYear>2013</inceptionYear> |
| 25 | + <inceptionYear>2018</inceptionYear> |
26 | 26 |
|
27 | 27 | <description>The primary goal of the Spring® Data project is to make it easier to build Spring-powered applications |
28 | 28 | that use data access technologies. |
29 | 29 | This module deals with enhanced support for a data access layer built on AWS DynamoDB.</description> |
30 | | - <url>https://github.com/derjust/spring-data-dynamodb</url> |
| 30 | + <url>https://github.com/spring-data-dynamodb/spring-data-dynamodb</url> |
31 | 31 |
|
32 | 32 | <licenses> |
33 | 33 | <license> |
|
41 | 41 | <spring-data.version>Ingalls-RELEASE</spring-data.version> |
42 | 42 |
|
43 | 43 | <hibernate-validator.version>5.2.4.Final</hibernate-validator.version> |
44 | | - <aws-java-sdk.version>1.11.232</aws-java-sdk.version> |
| 44 | + <aws-java-sdk.version>1.11.289</aws-java-sdk.version> |
45 | 45 | <junit.version>4.12</junit.version> |
46 | 46 | <mockito.version>2.13.0</mockito.version> |
47 | 47 |
|
|
117 | 117 | <artifactId>commons-logging</artifactId> |
118 | 118 | <version>1.2</version> |
119 | 119 | </dependency> |
| 120 | + <!-- uk.org.lidalia:slf4j-test comes with 3.1 --> |
| 121 | + <dependency> |
| 122 | + <groupId>org.apache.commons</groupId> |
| 123 | + <artifactId>commons-lang3</artifactId> |
| 124 | + <version>3.3.2</version> |
| 125 | + </dependency> |
| 126 | + <!-- uk.org.lidalia:slf4j-test comes with 1.7.5 --> |
| 127 | + <dependency> |
| 128 | + <groupId>org.slf4j</groupId> |
| 129 | + <artifactId>slf4j-api</artifactId> |
| 130 | + <version>1.7.25</version> |
| 131 | + </dependency> |
120 | 132 | </dependencies> |
121 | 133 | </dependencyManagement> |
122 | 134 |
|
|
136 | 148 | <groupId>org.springframework.data</groupId> |
137 | 149 | <artifactId>spring-data-commons</artifactId> |
138 | 150 | </dependency> |
| 151 | + |
139 | 152 | <dependency> |
140 | 153 | <groupId>org.hibernate</groupId> |
141 | 154 | <artifactId>hibernate-validator</artifactId> |
|
265 | 278 | <header>com/mycila/maven/plugin/license/templates/APACHE-2.txt</header> |
266 | 279 | <properties> |
267 | 280 | <owner>spring-data-dynamodb</owner> |
268 | | - <email>https://github.com/derjust/spring-data-dynamodb</email> |
| 281 | + <email>https://github.com/spring-data-dynamodb/spring-data-dynamodb</email> |
269 | 282 | </properties> |
270 | 283 | <excludes> |
271 | 284 | <exclude>**/README.md</exclude> |
|
488 | 501 | <artifactId>maven-failsafe-plugin</artifactId> |
489 | 502 | <configuration> |
490 | 503 | <systemPropertyVariables> |
| 504 | + <sqlite4java.library.path>${project.build.directory}/lib</sqlite4java.library.path> |
491 | 505 | <dynamodb.port>${dynamodblocal.port}</dynamodb.port> |
492 | 506 | </systemPropertyVariables> |
493 | 507 | </configuration> |
|
505 | 519 | </build> |
506 | 520 |
|
507 | 521 | <scm> |
508 | | - <url>https://github.com/derjust/spring-data-dynamodb</url> |
509 | | - <connection>scm:git:ssh://github.com/derjust/spring-data-dynamodb.git</connection> |
510 | | - <developerConnection>scm:git:ssh://git@github.com/derjust/spring-data-dynamodb.git</developerConnection> |
511 | | - <tag>HEAD</tag> |
| 522 | + <url>https://github.com/spring-data-dynamodb/spring-data-dynamodb</url> |
| 523 | + <connection>scm:git:ssh://github.com/spring-data-dynamodb/spring-data-dynamodb.git</connection> |
| 524 | + <developerConnection>scm:git:ssh://git@github.com/spring-data-dynamodb/spring-data-dynamodb.git</developerConnection> |
| 525 | + <tag>v5.0.2</tag> |
512 | 526 | </scm> |
513 | 527 |
|
514 | 528 | <repositories> |
|
718 | 732 | </contributors> |
719 | 733 |
|
720 | 734 |
|
721 | | - <distributionManagement> |
| 735 | + <distributionManagement><!-- |
722 | 736 | <relocation> |
723 | 737 | <groupId>com.github.spring-data-dynamodb</groupId> |
724 | | - </relocation> |
| 738 | + </relocation>--> |
725 | 739 | <site> |
726 | 740 | <id>website</id> |
727 | | - <url>https://github.com/derjust/spring-data-dynamodb/</url> |
| 741 | + <url>https://github.com/spring-data-dynamodb/spring-data-dynamodb/</url> |
728 | 742 | </site> |
729 | 743 | <snapshotRepository> |
730 | 744 | <id>ossrh</id> |
|
735 | 749 | <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
736 | 750 | </repository> |
737 | 751 | </distributionManagement> |
| 752 | + |
738 | 753 | <issueManagement> |
739 | 754 | <system>GitHub</system> |
740 | | - <url>https://github.com/derjust/spring-data-dynamodb/issues</url> |
| 755 | + <url>https://github.com/spring-data-dynamodb/spring-data-dynamodb/issues</url> |
741 | 756 | </issueManagement> |
742 | 757 |
|
| 758 | + <ciManagement> |
| 759 | + <system>Travis CI</system> |
| 760 | + <url>https://travis-ci.org/spring-data-dynamodb/spring-data-dynamodb</url> |
| 761 | + </ciManagement> |
| 762 | + |
743 | 763 |
|
744 | 764 | <reporting> |
745 | 765 | <plugins> |
|
760 | 780 | <artifactId>maven-project-info-reports-plugin</artifactId> |
761 | 781 | <version>2.9</version> |
762 | 782 | </plugin> |
| 783 | + <plugin> |
| 784 | + <groupId>org.apache.maven.plugins</groupId> |
| 785 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 786 | + <version>3.0.0</version> |
| 787 | + <reportSets> |
| 788 | + <reportSet> |
| 789 | + <id>default</id> |
| 790 | + <reports> |
| 791 | + <report>javadoc</report> |
| 792 | + </reports> |
| 793 | + </reportSet> |
| 794 | + </reportSets> |
| 795 | + </plugin> |
| 796 | + <plugin> |
| 797 | + <groupId>org.apache.maven.plugins</groupId> |
| 798 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 799 | + <configuration> |
| 800 | + <configLocation>checkstyle.xml</configLocation> |
| 801 | + </configuration> |
| 802 | + </plugin> |
| 803 | + <plugin> |
| 804 | + <groupId>org.apache.maven.plugins</groupId> |
| 805 | + <artifactId>maven-surefire-report-plugin</artifactId> |
| 806 | + <version>2.20.1</version> |
| 807 | + <configuration> |
| 808 | + </configuration> |
| 809 | + </plugin> |
763 | 810 | </plugins> |
764 | 811 | </reporting> |
765 | 812 |
|
|
0 commit comments