File tree 2 files changed +20
-2
lines changed 2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 21
21
java-version : ${{ matrix.jdk }}
22
22
distribution : temurin
23
23
secrets : inherit
24
+ test :
25
+ name : Test Against Snapshots
26
+ uses : spring-io/spring-security-release-tools/.github/workflows/test.yml@v1
27
+ strategy :
28
+ matrix :
29
+ include :
30
+ - java-version : 21-ea
31
+ - java-version : 17
32
+ with :
33
+ java-version : ${{ matrix.java-version }}
34
+ test-args : --refresh-dependencies -PforceMavenRepositories=snapshot -PisOverrideVersionCatalog -PtestToolchain=17 -PspringFrameworkVersion=5.3.+ -PspringDataVersion=2021.1.+ --stacktrace
24
35
deploy-artifacts :
25
36
name : Deploy Artifacts
26
37
needs : [ build ]
Original file line number Diff line number Diff line change @@ -14,9 +14,16 @@ repositories {
14
14
ext. queryDslVersion = ' 4.0.9'
15
15
16
16
dependencies {
17
- api platform(" org.springframework:spring-framework-bom:5.3.21" )
17
+ if (project. hasProperty(" isOverrideVersionCatalog" )) {
18
+ def springFrameworkVersion = project. property(" springFrameworkVersion" )
19
+ def springDataVersion = project. property(" springDataVersion" )
20
+ api platform(" org.springframework:spring-framework-bom:$springFrameworkVersion " )
21
+ api platform(" org.springframework.data:spring-data-bom:$springDataVersion " )
22
+ } else {
23
+ api platform(" org.springframework:spring-framework-bom:5.3.21" )
24
+ api platform(" org.springframework.data:spring-data-bom:2021.1.4" )
25
+ }
18
26
api platform(" org.junit:junit-bom:5.8.2" )
19
- api platform(" org.springframework.data:spring-data-bom:2021.1.4" )
20
27
api platform(" com.fasterxml.jackson:jackson-bom:2.13.3" )
21
28
constraints {
22
29
api " com.querydsl:querydsl-core:$queryDslVersion "
You can’t perform that action at this time.
0 commit comments