spring-petclinic/build.gradle

51 lines
1.8 KiB
Groovy
Raw Normal View History

2021-05-10 17:01:34 +00:00
plugins {
id 'java'
2023-11-23 17:54:36 +00:00
id 'org.springframework.boot' version '3.2.0'
2023-11-24 17:32:42 +00:00
id 'io.spring.dependency-management' version '1.1.4'
2023-11-23 17:54:36 +00:00
id 'org.graalvm.buildtools.native' version '0.9.28'
2024-01-09 13:28:39 +00:00
id 'io.spring.javaformat' version '0.0.40'
2021-05-10 17:01:34 +00:00
}
apply plugin: 'java'
apply plugin: 'io.spring.javaformat'
gradle.startParameter.excludedTaskNames += [ "checkFormatAot", "checkFormatAotTest" ]
2021-05-10 17:01:34 +00:00
group = 'org.springframework.samples'
2023-11-23 17:54:36 +00:00
version = '3.2.0'
2022-12-20 11:09:10 +00:00
sourceCompatibility = '17'
2021-05-10 17:01:34 +00:00
repositories {
mavenCentral()
}
2021-12-16 11:33:27 +00:00
ext.webjarsFontawesomeVersion = "4.7.0"
2023-11-24 17:32:42 +00:00
ext.webjarsBootstrapVersion = "5.3.2"
2021-05-10 17:01:34 +00:00
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'
2022-12-20 11:09:10 +00:00
implementation 'jakarta.xml.bind:jakarta.xml.bind-api'
2022-01-07 09:20:08 +00:00
runtimeOnly 'org.springframework.boot:spring-boot-starter-actuator'
2021-12-16 11:33:27 +00:00
runtimeOnly "org.webjars.npm:bootstrap:${webjarsBootstrapVersion}"
runtimeOnly "org.webjars.npm:font-awesome:${webjarsFontawesomeVersion}"
2022-12-20 11:09:10 +00:00
runtimeOnly 'com.github.ben-manes.caffeine:caffeine'
2021-05-10 17:01:34 +00:00
runtimeOnly 'com.h2database:h2'
2022-12-20 11:09:10 +00:00
runtimeOnly 'com.mysql:mysql-connector-j'
2021-12-16 11:33:27 +00:00
runtimeOnly 'org.postgresql:postgresql'
2021-05-10 17:01:34 +00:00
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'
2021-05-10 17:01:34 +00:00
}
tasks.named('test') {
2021-05-10 17:01:34 +00:00
useJUnitPlatform()
}