|
| 1 | +[[dependencies]] |
| 2 | += Dependencies |
| 3 | + |
| 4 | +Due to different inception dates of individual Spring Data modules, most of them carry different major and minor version numbers. The easiest way to find compatible ones is by relying on the Spring Data Release Train BOM we ship with the compatible versions defined. In a Maven project you'd declare this dependency in the `<dependencyManagement />` section of your POM: |
| 5 | + |
| 6 | +.Using the Spring Data release train BOM |
| 7 | +==== |
| 8 | +[source, xml] |
| 9 | +---- |
| 10 | +<dependencyManagement> |
| 11 | + <dependencies> |
| 12 | + <dependency> |
| 13 | + <groupId>org.springframework.data</groupId> |
| 14 | + <artifactId>spring-data-releasetrain</artifactId> |
| 15 | + <version>${release-train}</version> |
| 16 | + <scope>import</scope> |
| 17 | + <type>pom</type> |
| 18 | + </dependency> |
| 19 | + <dependencies> |
| 20 | +</dependencyManagement> |
| 21 | +---- |
| 22 | +==== |
| 23 | + |
| 24 | +The current release train version is {releasetrainVersion}. The train names are ascending alphabetically and currently available ones are listed https://github.com/spring-projects/spring-data-commons/wiki/Release-planning[here]. The version name follows the following pattern: `${name}-${release}` where release can be one of the following: |
| 25 | + |
| 26 | +* `BUILD-SNAPSHOT` - current snapshots |
| 27 | +* `M1`, `M2` etc. - milestones |
| 28 | +* `RC1`, `RC2` etc. - release candidates |
| 29 | +* `RELEASE` - GA release |
| 30 | +* `SR1`, `SR2` etc. - service releases |
| 31 | + |
| 32 | +A working example of using the BOMs can be found in our https://github.com/spring-projects/spring-data-examples/tree/master/bom[Spring Data examples repository]. |
| 33 | + |
| 34 | +If that's in place declare the Spring Data modules you'd like to use without a version in the `<dependencies />` block. |
| 35 | + |
| 36 | +.Declaring a dependency to a Spring Data module |
| 37 | +==== |
| 38 | +[source, xml] |
| 39 | +---- |
| 40 | +<dependencies> |
| 41 | + <dependency> |
| 42 | + <groupId>org.springframework.data</groupId> |
| 43 | + <artifactId>spring-data-jpa</artifactId> |
| 44 | + </dependency> |
| 45 | +<dependencies> |
| 46 | +---- |
| 47 | +==== |
| 48 | + |
| 49 | +[[dependencies.spring-boot]] |
| 50 | +== Dependency management with Spring Boot |
| 51 | + |
| 52 | +Spring Boot already selects a very recent version of Spring Data modules for you. In case you want to upgrade to a newer version nonetheless, simply configure the property `spring-data-releasetrain.version` to the train name and iteration you'd like to use. |
| 53 | + |
| 54 | +[[dependencies.spring-framework]] |
| 55 | +== Spring Framework |
| 56 | + |
| 57 | +The current version of Spring Data modules require Spring Framework in version {springVersion} or better. The modules might also work with an older bugfix version of that minor version. However, using the most recent version within that generation is highly recommended. |
0 commit comments