plugins { id 'org.springframework.boot' id 'io.spring.dependency-management' id 'org.asciidoctor.convert' id 'java' id 'war' } group = 'com.urpsys' version = '1.0.0-SNAPSHOT' sourceCompatibility = '17' configurations { compileOnly { extendsFrom annotationProcessor } } // repositories: 루트 build.gradle subprojects 로 승격 (INTEGRATION_DESIGN §2) ext { set('snippetsDir', file("build/generated-snippets")) } dependencies { implementation project(':common') implementation 'org.springframework.boot:spring-boot-starter-batch' implementation 'org.springframework.boot:spring-boot-starter-cache' implementation 'org.springframework.boot:spring-boot-starter-integration' implementation 'org.springframework.boot:spring-boot-starter-mail' implementation 'org.springframework.boot:spring-boot-starter-quartz' implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.springframework.boot:spring-boot-starter-validation' implementation ('org.springframework.boot:spring-boot-starter-web') { exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat' } implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.2.2' // DB 처리 // oracle connect lib // implementation group: 'com.oracle.database.jdbc', name: 'ojdbc8', version: '21.8.0.0' // runtimeOnly 'org.mariadb.jdbc:mariadb-java-client' // mariadb 연결처리 implementation 'com.mysql:mysql-connector-j:8.2.0' implementation 'org.springframework.boot:spring-boot-starter-undertow' implementation 'org.springframework.boot:spring-boot-starter-webflux' implementation 'org.apache.tomcat.embed:tomcat-embed-jasper' implementation 'org.apache.commons:commons-lang3:3.12.0' compileOnly 'org.projectlombok:lombok:1.18.20' annotationProcessor 'org.projectlombok:lombok:1.18.20' testCompileOnly 'org.projectlombok:lombok:1.18.20' testAnnotationProcessor 'org.projectlombok:lombok:1.18.20' developmentOnly 'org.springframework.boot:spring-boot-devtools' implementation 'commons-codec:commons-codec:1.15' // 암호화처리 implementation 'org.bgee.log4jdbc-log4j2:log4jdbc-log4j2-jdbc4.1:1.16' // sql log 처리 implementation 'org.springframework.security.oauth:spring-security-oauth2:2.3.8.RELEASE' implementation group: 'org.glassfish.jaxb', name: 'jaxb-runtime', version: '2.3.3' // javax.xml.bind.JAXBException 오류시 추가 implementation 'org.springframework.security:spring-security-jwt:1.0.9.RELEASE' implementation 'com.konghq:unirest-java:3.7.02' // http 통신을 쉽게 하기 위함 // 2023.07.31 나혁제 swagger 추가 처리 implementation 'io.springfox:springfox-swagger2:2.9.2' implementation 'io.springfox:springfox-swagger-ui:2.9.2' } test { outputs.dir snippetsDir useJUnitPlatform() } asciidoctor { inputs.dir snippetsDir dependsOn test }