forked from DevFW-CICD/spring-petclinic
Use gradle Java plugin configuration block
Java direct convention use deprecated: https://docs.gradle.org/8.6/userguide/upgrading_version_8.html#java_convention_deprecation
This commit is contained in:
parent
6508cfb05f
commit
3efd6e0f03
1 changed files with 4 additions and 1 deletions
|
@ -15,7 +15,10 @@ gradle.startParameter.excludedTaskNames += [ "checkFormatAot", "checkFormatAotTe
|
|||
|
||||
group = 'org.springframework.samples'
|
||||
version = '3.2.0'
|
||||
sourceCompatibility = '17'
|
||||
|
||||
java {
|
||||
sourceCompatibility = JavaVersion.VERSION_17
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
|
Loading…
Reference in a new issue