diff --git a/build.gradle b/build.gradle index 5f62c0615..0930fad44 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ 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 'java' } @@ -7,8 +7,8 @@ plugins { apply plugin: 'java' group = 'org.springframework.samples' -version = '2.7.3' -sourceCompatibility = '11' +version = '3.0.0' +sourceCompatibility = '17' repositories { mavenCentral() @@ -24,12 +24,13 @@ dependencies { 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 'org.ehcache:ehcache' + runtimeOnly 'com.github.ben-manes.caffeine:caffeine' runtimeOnly 'com.h2database:h2' - runtimeOnly 'mysql:mysql-connector-java' + 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'