FAISP/build.gradle

57 lines
2.1 KiB
Groovy

plugins {
id 'org.springframework.boot' version '2.7.2'
id 'io.spring.dependency-management' version '1.0.12.RELEASE'
id 'java'
}
group = 'com.dbnt'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor:2.7.2'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
implementation 'org.springframework.boot:spring-boot-starter-actuator:2.7.2'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.7.2'
implementation 'org.springframework.boot:spring-boot-starter-security:2.7.2'
implementation 'org.springframework.boot:spring-boot-starter-web:2.7.2'
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.2.2'
//thymeleaf
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:2.7.2'
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:3.1.0'
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5:3.0.4.RELEASE'
developmentOnly 'org.springframework.boot:spring-boot-devtools:2.7.2'
implementation 'org.apache.tomcat:tomcat-catalina-ha:9.0.62'
implementation 'org.bgee.log4jdbc-log4j2:log4jdbc-log4j2-jdbc4.1:1.16'
runtimeOnly 'org.postgresql:postgresql:42.3.6'
implementation 'com.oracle.database.jdbc:ojdbc8:21.7.0.0'
implementation files('libs/tibero6-jdbc.jar')
// json
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
//엑셀다운
implementation 'org.apache.poi:poi:4.1.0'
implementation 'org.apache.poi:poi-ooxml:4.1.0'
//crossEditor 요구 라이브러리
//implementation files('libs/commons-codec-1.15.jar') // 이미 추가되어 있어서 제외.
implementation files('libs/commons-fileupload-1.4.jar')
implementation files('libs/commons-io-2.11.0.jar')
implementation files('libs/java-json.jar')
}