File tree Expand file tree Collapse file tree 3 files changed +21
-7
lines changed Expand file tree Collapse file tree 3 files changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -3,12 +3,14 @@ updates:
33 - package-ecosystem : " gradle"
44 directory : " /"
55 schedule :
6- interval : " daily"
7- time : " 18:00"
6+ interval : " weekly"
7+ day : " sunday"
8+ time : " 00:00"
89 timezone : " Europe/Warsaw"
910 open-pull-requests-limit : 10
1011 allow :
1112 - dependency-type : " direct"
1213 ignore :
1314 - dependency-name : " *"
14- update-types : [ "version-update:semver-minor", "version-update:semver-major" ]
15+ update-types :
16+ - " version-update:semver-major"
Original file line number Diff line number Diff line change @@ -31,12 +31,12 @@ repositories {
3131}
3232
3333dependencies {
34- testImplementation(platform(" org .junit:junit-bom:5.13.4 " ))
34+ testImplementation(platform(libs .junit.bom ))
3535
36- testImplementation(" org .junit.jupiter:junit-jupiter " )
37- testRuntimeOnly(" org .junit.platform:junit-platform- launcher" )
36+ testImplementation(libs .junit.jupiter)
37+ testRuntimeOnly(libs .junit.platform. launcher)
3838
39- testImplementation(" org .assertj:assertj-core:3.27.6 " )
39+ testImplementation(libs .assertj.core )
4040}
4141
4242publishing {
Original file line number Diff line number Diff line change 1+ [versions ]
2+ assertj = " 3.27.6"
3+ junit = " 5.13.4"
4+
5+
6+ [libraries ]
7+ assertj-core = { module = " org.assertj:assertj-core" , version.ref = " assertj" }
8+ junit-bom = { module = " org.junit:junit-bom" , version.ref = " junit" }
9+
10+ # versions managed by junit-bom
11+ junit-jupiter = { module = " org.junit.jupiter:junit-jupiter" }
12+ junit-platform-launcher = { module = " org.junit.platform:junit-platform-launcher" }
You can’t perform that action at this time.
0 commit comments