mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-16 04:45:49 +00:00
Update Gradle build
This commit is contained in:
parent
dade7fcf31
commit
f5b1ebc965
1 changed files with 6 additions and 5 deletions
11
build.gradle
11
build.gradle
|
@ -1,5 +1,5 @@
|
||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot' version '2.7.3'
|
id 'org.springframework.boot' version '3.0.0'
|
||||||
id 'io.spring.dependency-management' version '1.0.13.RELEASE'
|
id 'io.spring.dependency-management' version '1.0.13.RELEASE'
|
||||||
id 'java'
|
id 'java'
|
||||||
}
|
}
|
||||||
|
@ -7,8 +7,8 @@ plugins {
|
||||||
apply plugin: 'java'
|
apply plugin: 'java'
|
||||||
|
|
||||||
group = 'org.springframework.samples'
|
group = 'org.springframework.samples'
|
||||||
version = '2.7.3'
|
version = '3.0.0'
|
||||||
sourceCompatibility = '11'
|
sourceCompatibility = '17'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
@ -24,12 +24,13 @@ dependencies {
|
||||||
implementation 'org.springframework.boot:spring-boot-starter-web'
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||||||
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
||||||
implementation 'javax.cache:cache-api'
|
implementation 'javax.cache:cache-api'
|
||||||
|
implementation 'jakarta.xml.bind:jakarta.xml.bind-api'
|
||||||
runtimeOnly 'org.springframework.boot:spring-boot-starter-actuator'
|
runtimeOnly 'org.springframework.boot:spring-boot-starter-actuator'
|
||||||
runtimeOnly "org.webjars.npm:bootstrap:${webjarsBootstrapVersion}"
|
runtimeOnly "org.webjars.npm:bootstrap:${webjarsBootstrapVersion}"
|
||||||
runtimeOnly "org.webjars.npm:font-awesome:${webjarsFontawesomeVersion}"
|
runtimeOnly "org.webjars.npm:font-awesome:${webjarsFontawesomeVersion}"
|
||||||
runtimeOnly 'org.ehcache:ehcache'
|
runtimeOnly 'com.github.ben-manes.caffeine:caffeine'
|
||||||
runtimeOnly 'com.h2database:h2'
|
runtimeOnly 'com.h2database:h2'
|
||||||
runtimeOnly 'mysql:mysql-connector-java'
|
runtimeOnly 'com.mysql:mysql-connector-j'
|
||||||
runtimeOnly 'org.postgresql:postgresql'
|
runtimeOnly 'org.postgresql:postgresql'
|
||||||
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
||||||
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||||||
|
|
Loading…
Reference in a new issue