56 lines
1.7 KiB
Groovy
56 lines
1.7 KiB
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.4.4'
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
id 'java'
|
|
id 'war'
|
|
}
|
|
|
|
bootJar.enabled = true
|
|
jar.enabled = false
|
|
|
|
// WAS, 톰캣에 배포 시 BOOT 실행 요소 제거 배포
|
|
bootWar.enabled = false
|
|
war.enabled = true
|
|
|
|
ext['logback.version'] = '1.2.10'
|
|
group = 'com.eactive'
|
|
version = '1.0.1'
|
|
sourceCompatibility = '1.8'
|
|
|
|
compileJava.options.encoding = 'UTF-8'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
|
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
|
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'
|
|
// implementation 'com.github.darrachequesne:spring-data-jpa-datatables:5.1.0'
|
|
// implementation 'com.google.jimfs:jimfs:1.2'
|
|
|
|
implementation 'io.springfox:springfox-boot-starter:3.0.0'
|
|
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
|
|
|
|
|
|
implementation 'org.apache.commons:commons-lang3:3.12.0'
|
|
implementation 'commons-io:commons-io:2.11.0'
|
|
implementation 'com.jayway.jsonpath:json-path:2.7.0'
|
|
implementation 'io.netty:netty-transport-native-kqueue:4.1.79.Final'
|
|
implementation 'io.netty:netty-resolver-dns-native-macos:4.1.79.Final'
|
|
implementation ('io.netty:netty-all:4.1.79.Final') {
|
|
exclude group: "io.netty", module: "netty-transport-native-kqueue"
|
|
exclude group: "io.netty", module: "netty-resolver-dns-native-macos"
|
|
}
|
|
runtimeOnly 'com.h2database:h2'
|
|
implementation 'org.mdkt.compiler:InMemoryJavaCompiler:1.3.0'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|