51 lines
1.7 KiB
Groovy
51 lines
1.7 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot' version '3.3.1'
|
|
id 'io.spring.dependency-management' version '1.1.5'
|
|
}
|
|
|
|
group = 'com.munjaon'
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
compileOnly {
|
|
extendsFrom annotationProcessor
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.3'
|
|
compileOnly 'org.projectlombok:lombok'
|
|
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
|
runtimeOnly 'org.mariadb.jdbc:mariadb-java-client'
|
|
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
testImplementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter-test:3.0.3'
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
|
// https://mvnrepository.com/artifact/com.zaxxer/HikariCP
|
|
implementation 'com.zaxxer:HikariCP:4.0.3'
|
|
// https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple
|
|
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
|
|
// https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils
|
|
implementation 'commons-beanutils:commons-beanutils:1.9.4'
|
|
// https://mvnrepository.com/artifact/org.jdom/jdom2
|
|
implementation 'org.jdom:jdom2:2.0.6.1'
|
|
// https://mvnrepository.com/artifact/org.apache.commons/commons-configuration2
|
|
implementation 'org.apache.commons:commons-configuration2:2.10.1'
|
|
}
|
|
|
|
tasks.named('test') {
|
|
useJUnitPlatform()
|
|
}
|