You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
927 B
Groovy

6 years ago
buildscript {
repositories {
mavenCentral()
}
dependencies {
2 years ago
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.6.4")
6 years ago
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
bootJar {
baseName = 'gs-serving-web-content'
2 years ago
version = '0.1.0'
6 years ago
}
repositories {
mavenCentral()
}
2 years ago
sourceCompatibility = 17
targetCompatibility = 17
6 years ago
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
compile("org.springframework.boot:spring-boot-devtools")
compile("org.springframework.boot:spring-boot-starter-data-jpa")
compile("com.h2database:h2")
3 years ago
compile("javax.xml.bind:jaxb-api:2.3.0")
compile("org.javassist:javassist:3.23.1-GA")
6 years ago
testCompile("junit:junit")
}