Skip to content

Commit c26cfc3

Browse files
authored
#70 add workaround description for Spring Boot >= 1.5.x
1 parent 36640a2 commit c26cfc3

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,22 @@ API changes will follow SEMVER and loosly the Spring Framework releases.
3535
`compile` and `runtime` dependencies are kept to a minimum to allow easy integartion, for example into
3636
Spring-Boot projects.
3737

38+
### Workaround for Spring Boot >= 1.5.x w/ Spring Framework Version >= 4.3.6 ###
39+
40+
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`):
41+
42+
<dependencyManagement>
43+
<dependencies>
44+
<dependency>
45+
<groupId>org.springframework.data</groupId>
46+
<artifactId>spring-data-releasetrain</artifactId>
47+
<version>Gosling-SR1</version>
48+
<type>pom</type>
49+
<scope>import</scope>
50+
</dependency>
51+
</dependencies>
52+
</dependencyManagement>
53+
3854
## Quick Start ##
3955

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

0 commit comments

Comments
 (0)