fix build.gradle

crud
Anton Romanov 2 years ago
parent b6fbbfcbe8
commit fecef79d76

@ -13,10 +13,6 @@ apply plugin: 'idea'
apply plugin: 'org.springframework.boot' apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management' apply plugin: 'io.spring.dependency-management'
bootJar {
baseName = 'gs-serving-web-content'
version = '0.1.0'
}
repositories { repositories {
mavenCentral() mavenCentral()
@ -26,13 +22,14 @@ sourceCompatibility = 17
targetCompatibility = 17 targetCompatibility = 17
dependencies { dependencies {
compile("org.springframework.boot:spring-boot-starter-web") implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web'
compile("org.springframework.boot:spring-boot-starter-thymeleaf") implementation group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf'
compile("org.springframework.boot:spring-boot-devtools") implementation group: 'org.springframework.boot', name: 'spring-boot-devtools'
compile("org.springframework.boot:spring-boot-starter-data-jpa") implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa'
compile("com.h2database:h2") implementation group: 'com.h2database', name: 'h2'
compile("javax.xml.bind:jaxb-api:2.3.0") implementation group: 'javax.xml.bind', name: 'jaxb-api'
compile("org.javassist:javassist:3.23.1-GA") implementation group: 'javax.validation', name: 'validation-api', version: '2.0.1.Final'
testCompile("junit:junit") implementation group: 'javassist', name: 'javassist', version: '3.12.1.GA'
implementation group: 'junit', name: 'junit'
} }

Loading…
Cancel
Save