You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,22 @@ API changes will follow SEMVER and loosly the Spring Framework releases.
35
35
`compile` and `runtime` dependencies are kept to a minimum to allow easy integartion, for example into
36
36
Spring-Boot projects.
37
37
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
+
38
54
## Quick Start ##
39
55
40
56
Download the JAR though [Maven](http://mvnrepository.com/artifact/com.github.derjust/spring-data-dynamodb):
0 commit comments