Skip to content

Commit 7cc122a

Browse files
committed
Cleanup
1 parent 1f6b43d commit 7cc122a

File tree

246 files changed

+3011
-549
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

246 files changed

+3011
-549
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ target
88
pom.xml.releaseBackup
99
release.properties
1010

11+
spring-data-dynamodb-examples/src/main/resources/application.properties
12+
13+
1114
# Package Files #
1215
*.jar
1316
*.war

.travis.settings.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright © 2018 spring-data-dynamodb (https://github.com/derjust/spring-data-dynamodb)
4+
Copyright © 2018 spring-data-dynamodb-parent (https://github.com/derjust/spring-data-dynamodb)
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ jdk:
88
- oraclejdk8
99
- oraclejdk9
1010

11+
env:
12+
- TRAVIS_CI=true
13+
1114
before_script:
1215
- pip install --user codecov
1316

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![codecov.io](https://codecov.io/github/derjust/spring-data-dynamodb/coverage.svg?branch=master)](https://codecov.io/github/derjust/spring-data-dynamodb?branch=master) [![Build Status](https://travis-ci.org/derjust/spring-data-dynamodb.svg?branch=master)](https://travis-ci.org/derjust/spring-data-dynamodb)
1+
[![codecov.io](https://codecov.io/github/derjust/spring-data-dynamodb/coverage.svg?branch=master)](https://codecov.io/github/derjust/spring-data-dynamodb?branch=master) [![Build Status](https://travis-ci.org/derjust/spring-data-dynamodb.svg?branch=master)](https://travis-ci.org/derjust/spring-data-dynamodb)
22
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.derjust/spring-data-dynamodb/badge.svg)](https://search.maven.org/search?q=g:com.github.derjust)
33
[![Developer Workspace](https://codenvy.io/factory/resources/codenvy-contribute.svg)](https://codenvy.io/f?user=userrzonfqnofgrmfxjx&amp;name=spring-data-dynamodb)
44
[![Donation badge](https://img.shields.io/badge/Donate-%F0%9F%92%B8-DAA520.svg)](DONATION.md)
@@ -22,12 +22,12 @@ Technical infos can be found on the [project page](https://derjust.github.io/spr
2222
* [Projections](https://github.com/derjust/spring-data-dynamodb/wiki/Projections)
2323
* Possibility to integrate [custom repository code](https://github.com/derjust/spring-data-dynamodb/wiki/Custom-repository-implementations)
2424
* Easy Spring annotation based integration
25-
* [REST support](https://github.com/derjust/spring-data-dynamodb-examples/blob/master/README-rest.md) via [spring-data-rest](https://projects.spring.io/spring-data-rest/)
25+
* [REST support](spring-data-dynamodb-examples/rest/README.md) via [spring-data-rest](https://projects.spring.io/spring-data-rest/)
2626

2727
## Demo application ##
2828

2929
For a demo of spring-data-dynamodb, using spring-data-rest to showcase DynamoDB repositories exposed with REST,
30-
please see [spring-data-dynamodb-examples](https://github.com/derjust/spring-data-dynamodb-examples).
30+
please see [spring-data-dynamodb-examples](spring-data-dynamodb-examples/).
3131

3232
## Quick Start ##
3333

@@ -147,10 +147,10 @@ public static class DynamoDBConfig {
147147
And finally write a test client [UserRepositoryIT](https://github.com/derjust/spring-data-dynamodb-examples/blob/master/src/test/java/com/github/derjust/spring_data_dynamodb_examples/simple/UserRepositoryIT.java) or start calling it from your existing Spring code.
148148

149149

150-
The full source code is available at [spring-data-dynamodb-examples' simple example](https://github.com/derjust/spring-data-dynamodb-examples/blob/master/README-simple.md)
150+
The full source code is available at [spring-data-dynamodb-examples' simple example](spring-data-dynamodb-examples/simple/README.md)
151151

152152
## More
153-
More sample code can be found in the [spring-data-dynamodb-examples](https://github.com/derjust/spring-data-dynamodb-examples) project.
153+
More sample code can be found in the [spring-data-dynamodb-examples](spring-data-dynamodb-examples/simple/) project.
154154

155155
Advanced topics can be found in the [wiki](https://github.com/derjust/spring-data-dynamodb/wiki).
156156

@@ -172,13 +172,13 @@ API changes will follow SEMVER and loosly the Spring Framework releases.
172172
| 5.1.x | >= 2.1 | >= 5.1 | Lovelace-SR1 |
173173
`spring-data-dynamodb` depends directly on `spring-data` as also `spring-context`, `spring-data` and `spring-tx`.
174174

175-
`compile` and `runtime` dependencies are kept to a minimum to allow easy integartion, for example into
175+
`compile` and `runtime` dependencies are kept to a minimum to allow easy integartion, for example into
176176
Spring-Boot projects.
177177

178178
## History
179179
The code base has some history already in it - let's clarify it a bit:
180180
* The code base was established under [github.com/michaellavelle/spring-data-dynamodb)](https://github.com/michaellavelle/spring-data-dynamodb)
181-
* It was forked and further maintained under [github.com/derjust/spring-data-dynamodb)](https://github.com/derjust/spring-data-dynamodb)
181+
* It was forked and further maintained under [github.com/derjust/spring-data-dynamodb)](https://github.com/derjust/spring-data-dynamodb)
182182
* Available in Maven Central under [`com.github.derjust:spring-data-dynamodb`](http://central.maven.org/maven2/com/github/derjust/spring-data-dynamodb/)
183183

184184
The Java package name/XSD namespace never changed from `org.socialsignin.spring.data.dynamodb`.

0 commit comments

Comments
 (0)