Skip to content

Commit

Permalink
Merge pull request #72 from dasniko/master
Browse files Browse the repository at this point in the history
#70 add workaround description for Spring Boot >= 1.5.x
  • Loading branch information
derjust committed Feb 11, 2017
2 parents 36640a2 + c26cfc3 commit 35d49d2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,22 @@ API changes will follow SEMVER and loosly the Spring Framework releases.
`compile` and `runtime` dependencies are kept to a minimum to allow easy integartion, for example into
Spring-Boot projects.

### Workaround for Spring Boot >= 1.5.x w/ Spring Framework Version >= 4.3.6 ###

As with Spring Boot 1.5.x the `Ingalls` releasetrain of Spring Data is used, this leads to startup failures with the current version of this library. A possible workaround is to lock the use Spring Data releasetrain to `Hopper` like this (add to your `pom.xml`):

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-releasetrain</artifactId>
<version>Gosling-SR1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

## Quick Start ##

Download the JAR though [Maven](http://mvnrepository.com/artifact/com.github.derjust/spring-data-dynamodb):
Expand Down

0 comments on commit 35d49d2

Please sign in to comment.