Skip to content

Commit 6d60911

Browse files
committed
Transferred
1 parent 45c4002 commit 6d60911

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,16 @@ And finally write a test client
282282
}
283283
}
284284
```
285-
286-
285+
286+
## History
287+
The code base has some history already in it - let's clarify it a bit:
288+
* The code base was established under [github.com/michaellavelle/spring-data-dynamodb)](https://github.com/michaellavelle/spring-data-dynamodb)
289+
* It was forked and further maintained under [github.com/derjust/spring-data-dynamodb)](https://github.com/derjust/spring-data-dynamodb)
290+
* Available in Maven Central under [`com.github.derjust:spring-data-dynamodb`](http://central.maven.org/maven2/com/github/derjust/spring-data-dynamodb/)
291+
* Ultimately transferred to [github.com/spring-data-dynamodb/spring-data-dynamodb)](https://github.com/spring-data-dynamodb/spring-data-dynamodb)
292+
* Available in Maven Central under [`com.github.spring-data-dynamodb:spring-data-dynamodb`](http://central.maven.org/maven2/com/github/spring-data-dynamodb/spring-data-dynamodb/)
293+
294+
The whole Java package never changed from `org.socialsignin.spring.data.dynamodb`
295+
287296
## Advanced topics ##
288297
Advanced topics can be found in the [wiki](https://github.com/spring-data-dynamodb/spring-data-dynamodb/wiki).

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
-->
1919
<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">
2020
<modelVersion>4.0.0</modelVersion>
21-
<groupId>com.github.derjust</groupId>
21+
<groupId>com.github.spring-data-dynamodb</groupId>
2222
<artifactId>spring-data-dynamodb</artifactId>
2323
<version>5.0.2-SNAPSHOT</version>
2424
<name>Spring Data DynamoDB</name>
@@ -730,10 +730,10 @@
730730
</contributors>
731731

732732

733-
<distributionManagement>
733+
<distributionManagement><!--
734734
<relocation>
735735
<groupId>com.github.spring-data-dynamodb</groupId>
736-
</relocation>
736+
</relocation>-->
737737
<site>
738738
<id>website</id>
739739
<url>https://github.com/spring-data-dynamodb/spring-data-dynamodb/</url>

src/test/java/org/socialsignin/spring/data/dynamodb/domain/sample/Installation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727

2828
/**
29-
* Test for <a href="https://github.com/derjust/spring-data-dynamodb/issues/52">Issue 52</a>.
29+
* Test for <a href="https://github.com/spring-data-dynamodb/spring-data-dynamodb/issues/52">Issue 52</a>.
3030
*/
3131
@DynamoDBTable(tableName = "installations")
3232
public class Installation implements Serializable {

0 commit comments

Comments
 (0)