jdk-17
This commit is contained in:
parent
261fab0bfa
commit
5071e6ebc5
17
build.gradle
17
build.gradle
@ -3,7 +3,7 @@ buildscript {
|
|||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.5.RELEASE")
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.6.4")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -15,20 +15,21 @@ apply plugin: 'io.spring.dependency-management'
|
|||||||
|
|
||||||
bootJar {
|
bootJar {
|
||||||
baseName = 'gs-serving-web-content'
|
baseName = 'gs-serving-web-content'
|
||||||
version = '0.1.0'
|
version = '0.1.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceCompatibility = 1.8
|
sourceCompatibility = 17
|
||||||
targetCompatibility = 1.8
|
targetCompatibility = 17
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile("org.springframework.boot:spring-boot-starter-web")
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web'
|
||||||
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-jetty'
|
||||||
compile("org.springframework.boot:spring-boot-devtools")
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf'
|
||||||
testCompile("junit:junit")
|
implementation group: 'org.springframework.boot', name: 'spring-boot-devtools'
|
||||||
|
implementation group: 'junit', name: 'junit'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
|
|||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
|
||||||
|
Loading…
Reference in New Issue
Block a user