Skip to content

Commit

Permalink
Added link to spring-data-dynamodb-examples project
Browse files Browse the repository at this point in the history
  • Loading branch information
derjust committed Jul 3, 2018
1 parent 48d3b58 commit b3b96f3
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 10 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Technical infos can be found on the [project page](https://derjust.github.io/spr
* [Projections](https://github.com/derjust/spring-data-dynamodb/wiki/Projections)
* Possibility to integrate [custom repository code](https://github.com/derjust/spring-data-dynamodb/wiki/Custom-repository-implementations)
* Easy Spring annotation based integration
* [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/)

## Demo application ##

Expand Down Expand Up @@ -184,6 +185,13 @@ And finally write a test client
}
```


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

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


## Version & Spring Framework compatibility ##

The major and minor number of this library refers to the compatible Spring framework version. The build number is used as specified by SEMVER.
Expand Down Expand Up @@ -212,6 +220,3 @@ The code base has some history already in it - let's clarify it a bit:

The Java package name/XSD namespace never changed from `org.socialsignin.spring.data.dynamodb`.
But the XSD is now also available at [`https://derjust.github.io/spring-data-dynamodb/spring-dynamodb-1.0.xsd`](https://derjust.github.io/spring-data-dynamodb/spring-dynamodb-1.0.xsd).

## Advanced topics ##
Advanced topics can be found in the [wiki](https://github.com/derjust/spring-data-dynamodb/wiki).
16 changes: 15 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
# Release process #
# Prepare release

## Format source code

```
mvn formatter:format
```

## Update license headers

```
mvn license:format
```

# Release process

1. Check `pom.xml` for the proper `<version />` tag
1. Check `pom.xml` `<Specification-Version />` entries
Expand Down
9 changes: 3 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,8 @@
<configuration>
<header>com/mycila/maven/plugin/license/templates/APACHE-2.txt</header>
<properties>
<owner>spring-data-dynamodb</owner>
<email>https://github.com/derjust/spring-data-dynamodb</email>
<owner>${project.artifactId}</owner>
<email>${project.url}</email>
</properties>
<excludes>
<exclude>**/README.md</exclude>
Expand Down Expand Up @@ -790,10 +790,7 @@
</contributors>


<distributionManagement><!--
<relocation>
<groupId>derjust</groupId>
</relocation>-->
<distributionManagement>
<site>
<id>website</id>
<url>https://derjust.github.io/spring-data-dynamodb/</url>
Expand Down

0 comments on commit b3b96f3

Please sign in to comment.