Skip to content

Commit

Permalink
Downgrade Spring Boot to v2.7 (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
KodaiD authored Sep 9, 2024
1 parent 33b402c commit a0fb43d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/applications/simple-bank-account/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.0")
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.7.18")
}
}

plugins {
id 'java'
id 'application'
id 'idea'
id "org.springframework.boot" version "3.3.0"
id "org.springframework.boot" version "2.7.18"
id "io.spring.dependency-management" version "1.1.5"
}

Expand All @@ -30,7 +30,7 @@ repositories {

java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
languageVersion = JavaLanguageVersion.of(8)
}
}

Expand Down

0 comments on commit a0fb43d

Please sign in to comment.