mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-25 09:05:50 +00:00
axiom build plugin added
This commit is contained in:
parent
f85ad88f33
commit
ed8b61d393
1 changed files with 9 additions and 1 deletions
10
build.gradle
10
build.gradle
|
@ -3,12 +3,13 @@ plugins {
|
||||||
id 'org.springframework.boot' version '3.1.1'
|
id 'org.springframework.boot' version '3.1.1'
|
||||||
id 'io.spring.dependency-management' version '1.1.0'
|
id 'io.spring.dependency-management' version '1.1.0'
|
||||||
id 'org.graalvm.buildtools.native' version '0.9.23'
|
id 'org.graalvm.buildtools.native' version '0.9.23'
|
||||||
|
id 'pl.allegro.tech.build.axion-release' version '1.15.1'
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: 'java'
|
apply plugin: 'java'
|
||||||
|
|
||||||
group = 'org.springframework.samples'
|
group = 'org.springframework.samples'
|
||||||
version = '3.1.0'
|
project.version = scmVersion.version
|
||||||
sourceCompatibility = '17'
|
sourceCompatibility = '17'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -44,3 +45,10 @@ dependencies {
|
||||||
tasks.named('test') {
|
tasks.named('test') {
|
||||||
useJUnitPlatform()
|
useJUnitPlatform()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
scmVersion {
|
||||||
|
versionIncrementer('incrementMinor')
|
||||||
|
tag {
|
||||||
|
prefix.set("")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue