mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 15:55:49 +00:00
Delete build.gradle
This commit is contained in:
parent
d79a734026
commit
8b390330ed
1 changed files with 0 additions and 46 deletions
46
build.gradle
46
build.gradle
|
@ -1,46 +0,0 @@
|
||||||
plugins {
|
|
||||||
id 'java'
|
|
||||||
id 'org.springframework.boot' version '3.1.1'
|
|
||||||
id 'io.spring.dependency-management' version '1.1.0'
|
|
||||||
id 'org.graalvm.buildtools.native' version '0.9.23'
|
|
||||||
}
|
|
||||||
|
|
||||||
apply plugin: 'java'
|
|
||||||
|
|
||||||
group = 'org.springframework.samples'
|
|
||||||
version = '3.1.0'
|
|
||||||
sourceCompatibility = '17'
|
|
||||||
|
|
||||||
repositories {
|
|
||||||
mavenCentral()
|
|
||||||
}
|
|
||||||
|
|
||||||
ext.webjarsFontawesomeVersion = "4.7.0"
|
|
||||||
ext.webjarsBootstrapVersion = "5.2.3"
|
|
||||||
|
|
||||||
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.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'
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks.named('test') {
|
|
||||||
useJUnitPlatform()
|
|
||||||
}
|
|
Loading…
Reference in a new issue