65 lines
1.7 KiB
Groovy
65 lines
1.7 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot' version '2.7.17'
|
|
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
|
|
}
|
|
|
|
group = 'com.dbnt'
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
java {
|
|
sourceCompatibility = '11'
|
|
}
|
|
|
|
configurations {
|
|
compileOnly {
|
|
extendsFrom annotationProcessor
|
|
}
|
|
configureEach {
|
|
exclude group: 'ch.qos.logback', module: 'logback-classic'
|
|
exclude group: 'org.apache.logging.log4j', module: 'log4j-to-slf4j'
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
maven {
|
|
url "https://maven.egovframe.kr:8080/maven/"
|
|
}
|
|
maven {
|
|
url "https://maven.egovframe.go.kr/maven/"
|
|
metadataSources {
|
|
artifact()
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.24'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.24'
|
|
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor:2.7.17'
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.7.17'
|
|
implementation 'org.springframework.boot:spring-boot-starter-security:2.7.17'
|
|
implementation 'org.springframework.boot:spring-boot-starter-web:2.7.17'
|
|
developmentOnly 'org.springframework.boot:spring-boot-devtools:2.7.17'
|
|
|
|
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.2.2'
|
|
|
|
implementation 'org.apache.tomcat:tomcat-catalina-ha:9.0.82'
|
|
|
|
implementation 'org.bgee.log4jdbc-log4j2:log4jdbc-log4j2-jdbc4.1:1.16'
|
|
runtimeOnly 'org.postgresql:postgresql:42.5.4'
|
|
|
|
/*전자정부*/
|
|
implementation(group: 'org.egovframe.rte', name: 'org.egovframe.rte.ptl.mvc', version:'4.1.0') {
|
|
exclude(module: 'commons-logging')
|
|
}
|
|
implementation group: 'org.egovframe.rte', name: 'org.egovframe.rte.fdl.cmmn', version:'4.1.0'
|
|
|
|
// json
|
|
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
|
|
}
|