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
`spring-data-dynamodb` depends directly on `spring-data` as also `spring-context`, `spring-data` and `spring-tx`.
34
35
35
36
`compile` and `runtime` dependencies are kept to a minimum to allow easy integartion, for example into
36
37
Spring-Boot projects.
37
38
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
-
54
39
## Quick Start ##
55
40
56
41
Download the JAR though [Maven](http://mvnrepository.com/artifact/com.github.derjust/spring-data-dynamodb):
@@ -59,7 +44,7 @@ Download the JAR though [Maven](http://mvnrepository.com/artifact/com.github.der
0 commit comments