File tree Expand file tree Collapse file tree 1 file changed +25
-7
lines changed Expand file tree Collapse file tree 1 file changed +25
-7
lines changed Original file line number Diff line number Diff line change @@ -30,25 +30,43 @@ Experimental features are not released to Maven Central, but they are available
3030</repositories >
3131```
3232
33- You can also build the project and install it in your local Maven repository with the following command :
33+ You can also import the latest snapshots from the Spring Snapshots repository:
3434
35- ``` shell
36- $> ./mvnw clean install
35+ ``` xml
36+ <repositories >
37+ <repository >
38+ <id >spring-snapshots</id >
39+ <name >Spring Snapshots</name >
40+ <url >https://repo.spring.io/snapshot</url >
41+ <snapshots >
42+ <enabled >true</enabled >
43+ </snapshots >
44+ <releases >
45+ <enabled >false</enabled >
46+ </releases >
47+ </repository >
48+ </repositories >
3749```
3850
39- The experimental features are based on the latest Spring Batch 5+ release, which requires Java 17+.
51+ Experimental features are based on the latest Spring Batch 5+ release, which requires Java 17+.
4052
41- To test experimental features, you need to add the following dependency in your project :
53+ To import experimental features in your project , you need to add the following dependency:
4254
4355``` xml
4456<dependency >
4557 <groupId >org.springframework.batch</groupId >
4658 <artifactId >spring-batch-experimental</artifactId >
47- <version >0.1 .0</version >
59+ <version >0.2 .0</version >
4860</dependency >
4961```
5062
51- Depending on the feature you are testing, other dependencies might be required.
63+ Depending on the feature you are testing, other dependencies might be required. This will be mentioned in the section describing the feature.
64+
65+ To build the project and install it in your local Maven repository, use the following command:
66+
67+ ``` shell
68+ $> ./mvnw clean install
69+ ```
5270
5371# MongoDB job repository
5472
You can’t perform that action at this time.
0 commit comments