Skip to content

Commit

Permalink
Bump up spring boot version to 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
IAM20 committed Nov 22, 2024
1 parent 2ae39a4 commit 32ed902
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
springBootVersion=3.3.4
springBootVersion=3.4.0
springDataBomVersion=2024.1.0
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Wed Apr 08 13:12:22 KST 2020
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-all.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
Expand Down
10 changes: 5 additions & 5 deletions guide-projects/plus-sql-java-groovy-guide/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ compileGroovy {

if (project.convention.findPlugin(JavaPluginConvention)) {
// Change the output directory for the main and test source sets back to the old path
sourceSets.main.java.outputDir = new File(buildDir, "classes/main")
sourceSets.main.groovy.outputDir = new File(buildDir, "classes/main")
sourceSets.test.java.outputDir = new File(buildDir, "classes/test")
sourceSets.test.groovy.outputDir = new File(buildDir, "classes/test")
sourceSets.main.java.destinationDirectory = new File(buildDir, "classes/main")
sourceSets.main.groovy.destinationDirectory = new File(buildDir, "classes/main")
sourceSets.test.java.destinationDirectory = new File(buildDir, "classes/test")
sourceSets.test.groovy.destinationDirectory = new File(buildDir, "classes/test")
}

tasks.withType(GroovyCompile).configureEach {
Expand All @@ -34,7 +34,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
implementation project(":spring-boot-starter-data-jdbc-plus-sql")
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation('org.codehaus.groovy:groovy:3.0.13')
implementation('org.codehaus.groovy:groovy:3.0.23')
implementation("com.h2database:h2")

implementation("org.springframework.data:spring-data-jdbc")
Expand Down

0 comments on commit 32ed902

Please sign in to comment.