update #5

Open
mdebray wants to merge 231 commits from update into main
2 changed files with 9 additions and 7 deletions
Showing only changes of commit 950a0c4b21 - Show all commits

View file

@ -46,4 +46,4 @@ Docker:
Test:
- changed-files:
- any-glob-to-any-file: 'cucumber/**/*'
- any-glob-to-any-file: 'test*'
- any-glob-to-any-file: 'src/test**/*'

View file

@ -1,6 +1,6 @@
plugins {
id "java"
id "org.springframework.boot" version "3.3.0"
id "org.springframework.boot" version "3.3.2"
id "io.spring.dependency-management" version "1.1.6"
id "org.springdoc.openapi-gradle-plugin" version "1.8.0"
id "io.swagger.swaggerhub" version "1.3.2"
@ -18,8 +18,10 @@ ext {
group = "stirling.software"
version = "0.26.2"
java {
// 17 is lowest but we support and recommend 21
sourceCompatibility = "17"
sourceCompatibility = JavaVersion.VERSION_17
}
repositories {
mavenCentral()