25 lines
838 B
Groovy
25 lines
838 B
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.3.3.RELEASE'
|
|
id 'java'
|
|
}
|
|
|
|
apply plugin: 'io.spring.dependency-management'
|
|
|
|
sourceCompatibility = 11
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
sourceSets.main.resources.srcDirs = ["src/main/resources"]
|
|
|
|
dependencies {
|
|
runtimeOnly 'com.h2database:h2'
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
implementation 'org.springframework.boot:spring-boot-starter'
|
|
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
|
implementation 'org.springframework.boot:spring-boot-starter-freemarker'
|
|
compile("org.springframework.boot:spring-boot-starter-web")
|
|
compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.12.1'
|
|
testImplementation('org.springframework.boot:spring-boot-starter-test')
|
|
} |