From c050c38d0f6236d49574dbfdd2b7752fa9cfa671 Mon Sep 17 00:00:00 2001 From: Anton Romanov Date: Thu, 28 Nov 2024 15:28:05 +0400 Subject: [PATCH] fix jdk --- build.gradle | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index 02a13b5..b1f06d5 100644 --- a/build.gradle +++ b/build.gradle @@ -13,23 +13,23 @@ apply plugin: 'idea' apply plugin: 'org.springframework.boot' apply plugin: 'io.spring.dependency-management' -bootJar { - baseName = 'gs-serving-web-content' - version = '0.1.0' -} repositories { mavenCentral() } -sourceCompatibility = 17 -targetCompatibility = 17 +sourceCompatibility = 11 +targetCompatibility = 11 dependencies { implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web' - implementation group: 'org.springframework.boot', name: 'spring-boot-starter-jetty' implementation group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf' implementation group: 'org.springframework.boot', name: 'spring-boot-devtools' + implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa' + implementation group: 'com.h2database', name: 'h2' + implementation group: 'javax.xml.bind', name: 'jaxb-api' + implementation group: 'javax.validation', name: 'validation-api', version: '2.0.1.Final' + implementation group: 'javassist', name: 'javassist', version: '3.12.1.GA' implementation group: 'junit', name: 'junit' }