plugins { id 'java' id 'org.springframework.boot' version '3.2.1' id 'io.spring.dependency-management' version '1.1.4' } group = 'com.takensoft' version = '0.0.1-SNAPSHOT' apply plugin:'war' java { sourceCompatibility = '17' } repositories { mavenCentral() } dependencies { // postgresql jdbc implementation group: 'org.postgresql', name: 'postgresql', version: '42.6.0' // 오라클 jdbc implementation group: 'com.oracle.database.jdbc', name: 'ojdbc11', version: '21.8.0.0' // 마리아 jdbc implementation group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '3.3.2' // mysql jdbc implementation group: 'com.mysql', name: 'mysql-connector-j', version: '8.0.33' // mssql jdbc implementation group: 'com.microsoft.sqlserver', name: 'mssql-jdbc', version: '12.4.2.jre11' // cron-utils 라이브러리 추가 implementation 'com.cronutils:cron-utils:9.1.3' // mybatis implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.3' // sftp implementation 'com.jcraft:jsch:0.1.55' //lombok 라이브러리 compileOnly 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok' testCompileOnly 'org.projectlombok:lombok' testAnnotationProcessor 'org.projectlombok:lombok' // https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1' // https://mvnrepository.com/artifact/org.json/json implementation group: 'org.json', name: 'json', version: '20231013' // https://mvnrepository.com/artifact/org.springframework.security/spring-security-crypto implementation group: 'org.springframework.security', name: 'spring-security-crypto', version: '6.2.1' // https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api //compileOnly group: 'javax.servlet', name: 'javax.servlet-api', version: '3.0.1' implementation 'org.springframework.boot:spring-boot-starter' implementation 'org.bgee.log4jdbc-log4j2:log4jdbc-log4j2-jdbc4.1:1.16' // Log4j2 스타터 implementation 'org.springframework.boot:spring-boot-starter-log4j2' // https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310 // Jackson 라이브러리 추가 implementation 'com.fasterxml.jackson.core:jackson-databind' implementation 'com.fasterxml.jackson.core:jackson-annotations' implementation 'com.fasterxml.jackson.core:jackson-core' implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310' // 웹 푸시 라이브러리 implementation group: 'nl.martijndwars', name: 'web-push', version: '5.1.1' implementation group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.70' //poi implementation 'org.apache.poi:poi:5.2.5' implementation 'org.apache.poi:poi-ooxml:5.2.5' // Super CSV 라이브러리 추가 implementation 'net.sf.supercsv:super-csv:2.4.0' //Open CSV 라이브러리 추가 implementation group: 'com.opencsv', name: 'opencsv', version: '5.5.2' // 기본 implementation 'org.springframework.boot:spring-boot-starter-web' testImplementation 'org.springframework.boot:spring-boot-starter-test' // API 게이트 웨이 implementation files('libs/apim-gateway-auth-1.1.jar') // 새올 추가 implementation files('libs/commons-beanutils-1.8.3.jar') implementation files('libs/commons-collections-3.2.1.jar') implementation files('libs/commons-lang-2.5.jar') implementation files('libs/commons-logging-1.1.1.jar') implementation files('libs/crypto.jar') implementation files('libs/ezmorph-1.0.2.jar') implementation files('libs/httpclient-4.3.5.jar') implementation files('libs/httpcore-4.3.2.jar') implementation files('libs/json-lib-2.4-jdk15.jar') providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat' // 지원되지 않은 오라클 DB 문자 집합 문제 해결용 implementation group: 'com.oracle.ojdbc', name: 'orai18n', version: '19.3.0.0' } configurations { all { exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging' } } bootJar{ archiveBaseName="takenbimanager" archiveVersion=version }