Files
elink-test-master/build.gradle
T
2022-04-06 09:59:31 +09:00

35 lines
1.1 KiB
Groovy

plugins {
id 'org.springframework.boot' version '2.4.4'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
ext['logback.version'] = '1.2.10'
group = 'com.eactive'
version = '1.0.1'
sourceCompatibility = '1.8'
compileJava.options.encoding = 'MS949'
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 'org.apache.commons:commons-lang3:3.10'
implementation group: 'commons-io', name: 'commons-io', version: '2.6'
implementation 'com.jayway.jsonpath:json-path:2.4.0'
runtimeOnly 'com.h2database:h2'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
test {
useJUnitPlatform()
}