mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-25 09:05:50 +00:00
correct build.gradle config
This commit is contained in:
parent
ed8b61d393
commit
405452cedb
1 changed files with 7 additions and 7 deletions
14
build.gradle
14
build.gradle
|
@ -8,6 +8,13 @@ plugins {
|
||||||
|
|
||||||
apply plugin: 'java'
|
apply plugin: 'java'
|
||||||
|
|
||||||
|
scmVersion {
|
||||||
|
versionIncrementer('incrementMinor')
|
||||||
|
tag {
|
||||||
|
prefix.set("")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
group = 'org.springframework.samples'
|
group = 'org.springframework.samples'
|
||||||
project.version = scmVersion.version
|
project.version = scmVersion.version
|
||||||
sourceCompatibility = '17'
|
sourceCompatibility = '17'
|
||||||
|
@ -45,10 +52,3 @@ dependencies {
|
||||||
tasks.named('test') {
|
tasks.named('test') {
|
||||||
useJUnitPlatform()
|
useJUnitPlatform()
|
||||||
}
|
}
|
||||||
|
|
||||||
scmVersion {
|
|
||||||
versionIncrementer('incrementMinor')
|
|
||||||
tag {
|
|
||||||
prefix.set("")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue