mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-16 04:45:49 +00:00

details: * Gradle changes: ** redundant 'apply' plugin declarations are removed ** java 'sourceCompatibility' removed in favor of 'toolchain' * Gradle version upgrade: 8.14 -->> 8.14.3 * Maven version upgrade: 3.9.9 -->> 3.9.10 related links: * https://docs.gradle.org/8.14.1/release-notes.html * https://docs.gradle.org/8.14.2/release-notes.html * https://docs.gradle.org/8.14.3/release-notes.html * https://maven.apache.org/docs/3.9.10/release-notes.html * https://committing-crimes.com/articles/2024-10-30-using-gradle-toolchains-properly * https://docs.gradle.org/8.14.3/userguide/building_java_projects.html#sec:java_cross_compilation Signed-off-by: dejan2609 <dejan2609@gmail.com>
91 lines
3.1 KiB
Groovy
91 lines
3.1 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'checkstyle'
|
|
id 'org.springframework.boot' version '3.5.0'
|
|
id 'io.spring.dependency-management' version '1.1.7'
|
|
id 'org.graalvm.buildtools.native' version '0.10.6'
|
|
id 'org.cyclonedx.bom' version '2.3.1'
|
|
id 'io.spring.javaformat' version '0.0.46'
|
|
id "io.spring.nohttp" version "0.0.11"
|
|
}
|
|
|
|
gradle.startParameter.excludedTaskNames += [ "checkFormatAot", "checkFormatAotTest" ]
|
|
|
|
group = 'org.springframework.samples'
|
|
version = '3.5.0'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
ext.checkstyleVersion = "10.25.0"
|
|
ext.springJavaformatCheckstyleVersion = "0.0.46"
|
|
ext.webjarsLocatorLiteVersion = "1.1.0"
|
|
ext.webjarsFontawesomeVersion = "4.7.0"
|
|
ext.webjarsBootstrapVersion = "5.3.6"
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter-cache'
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
|
implementation 'javax.cache:cache-api'
|
|
implementation 'jakarta.xml.bind:jakarta.xml.bind-api'
|
|
runtimeOnly 'org.springframework.boot:spring-boot-starter-actuator'
|
|
runtimeOnly "org.webjars:webjars-locator-lite:${webjarsLocatorLiteVersion}"
|
|
runtimeOnly "org.webjars.npm:bootstrap:${webjarsBootstrapVersion}"
|
|
runtimeOnly "org.webjars.npm:font-awesome:${webjarsFontawesomeVersion}"
|
|
runtimeOnly 'com.github.ben-manes.caffeine:caffeine'
|
|
runtimeOnly 'com.h2database:h2'
|
|
runtimeOnly 'com.mysql:mysql-connector-j'
|
|
runtimeOnly 'org.postgresql:postgresql'
|
|
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
testImplementation 'org.springframework.boot:spring-boot-testcontainers'
|
|
testImplementation 'org.springframework.boot:spring-boot-docker-compose'
|
|
testImplementation 'org.testcontainers:junit-jupiter'
|
|
testImplementation 'org.testcontainers:mysql'
|
|
checkstyle "io.spring.javaformat:spring-javaformat-checkstyle:${springJavaformatCheckstyleVersion}"
|
|
checkstyle "com.puppycrawl.tools:checkstyle:${checkstyleVersion}"
|
|
}
|
|
|
|
tasks.named('test') {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
checkstyle {
|
|
configDirectory = project.file('src/checkstyle')
|
|
configFile = file('src/checkstyle/nohttp-checkstyle.xml')
|
|
}
|
|
|
|
checkstyleNohttp {
|
|
configDirectory = project.file('src/checkstyle')
|
|
configFile = file('src/checkstyle/nohttp-checkstyle.xml')
|
|
}
|
|
|
|
tasks.named("formatMain").configure { dependsOn("checkstyleMain") }
|
|
tasks.named("formatMain").configure { dependsOn("checkstyleNohttp") }
|
|
|
|
tasks.named("formatTest").configure { dependsOn("checkstyleTest") }
|
|
tasks.named("formatTest").configure { dependsOn("checkstyleNohttp") }
|
|
|
|
checkstyleAot.enabled = false
|
|
checkstyleAotTest.enabled = false
|
|
|
|
checkFormatAot.enabled = false
|
|
checkFormatAotTest.enabled = false
|
|
|
|
formatAot.enabled = false
|
|
formatAotTest.enabled = false
|
|
|
|
wrapper {
|
|
gradleVersion = "8.14.3"
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
}
|