Skip to content

Commit

Permalink
Bump org.springframework.boot from 3.3.0 to 3.3.2 & Gradle 8 compatib…
Browse files Browse the repository at this point in the history
…ility
  • Loading branch information
Ludy87 committed Aug 3, 2024
1 parent 0f60974 commit 13d860b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/labeler-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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**/*'
14 changes: 8 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -18,8 +18,10 @@ ext {
group = "stirling.software"
version = "0.26.2"

// 17 is lowest but we support and recommend 21
sourceCompatibility = "17"
java {
// 17 is lowest but we support and recommend 21
sourceCompatibility = JavaVersion.VERSION_17
}

repositories {
mavenCentral()
Expand Down Expand Up @@ -106,7 +108,7 @@ dependencies {

// implementation "org.yaml:snakeyaml:2.2"
implementation 'com.github.Carleslc.Simple-YAML:Simple-Yaml:1.8.4'

// Exclude Tomcat and include Jetty
implementation("org.springframework.boot:spring-boot-starter-web:$springBootVersion") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-tomcat"
Expand Down Expand Up @@ -196,7 +198,7 @@ compileJava {
options.compilerArgs << "-parameters"
}

task writeVersion {
task writeVersion {
def propsFile = file("src/main/resources/version.properties")
def props = new Properties()
props.setProperty("version", version)
Expand Down Expand Up @@ -226,6 +228,6 @@ tasks.named("test") {
useJUnitPlatform()
}

task printVersion {
task printVersion {
println project.version
}

0 comments on commit 13d860b

Please sign in to comment.