//-------------------------------------------------------------------------------------- // gradle에서는 스크립트 위치 중요 // plugins{} 전에는 buildscript{}와 plugins{} 만 가능 //-------------------------------------------------------------------------------------- //-------------------------------------------------------------------------------------- buildscript { ext { springBootVersion ='2.6.3' queryDslVersion = "5.0.0" } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion") } } plugins { //id 'application' id 'org.springframework.boot' version '2.6.3' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' id 'war' } // buildscript group = 'com.xit' version = '0.0.1-SNAPSHOT' description = 'xit-opst-be' sourceCompatibility = '11' // WAS로 배포하는 경우 : bootWar.enabled = false bootWar.enabled = false bootWar{ enabled(false) archiveName('opst-be.war') } war{ enabled(true) archiveName('ROOT.war') // webInf { // from("${buildDir}/resources/main") // } } repositories { mavenCentral() google() } configurations { compileOnly { extendsFrom annotationProcessor } } dependencies { //dependency is used by the application. implementation 'com.google.guava:guava:30.1.1-jre' //-----------------------------------------------------------------------------------// // Core //-----------------------------------------------------------------------------------// // spring boot core implementation 'org.springframework.boot:spring-boot-starter' implementation 'org.springframework.boot:spring-boot-starter-web' //implementation 'org.springframework.boot:spring-boot-starter-hateoas' implementation 'org.springframework.boot:spring-boot-configuration-processor' implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot-starter-jdbc' // config 암호화 사용 implementation 'com.github.ulisesbocchio:jasypt-spring-boot-starter:3.0.3' // spring-boot 2.3 까지는 사용 불가 - spring-boot-starter-web에 포함되어 있다 // hibernate-validator:5.2.4.Final 사용 implementation 'org.springframework.boot:spring-boot-starter-validation' // spring-boot 2.3 까지는 아래 lib 사용 //implementation 'org.hibernate:hibernate-validator:5.2.4.Final' // yaml 다국화 lib implementation 'net.rakugakibox.util:yaml-resource-bundle:1.2' // social login implementation 'org.springframework.boot:spring-boot-starter-oauth2-client' //-----------------------------------------------------------------------------------// //-----------------------------------------------------------------------------------// // Java Web Token //-----------------------------------------------------------------------------------// implementation 'io.jsonwebtoken:jjwt-api:0.11.2' runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.2' runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.2' //-----------------------------------------------------------------------------------// //-----------------------------------------------------------------------------------// // Mybatis //-----------------------------------------------------------------------------------// implementation 'org.mybatis:mybatis:3.5.9' implementation 'org.mybatis:mybatis-typehandlers-jsr310:1.0.2' implementation 'org.mybatis:mybatis-spring:2.0.6' //-----------------------------------------------------------------------------------// implementation 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok' //-----------------------------------------------------------------------------------// //-----------------------------------------------------------------------------------// // Springdoc : swagger //-----------------------------------------------------------------------------------// implementation 'org.springdoc:springdoc-openapi-ui:1.6.3' implementation 'org.springdoc:springdoc-openapi-security:1.6.3' implementation 'org.springdoc:springdoc-openapi-data-rest:1.6.3' implementation 'org.springdoc:springdoc-openapi-webmvc-core:1.6.3' //-----------------------------------------------------------------------------------// // Xss Injection avoid : Naver lucy-xss //-----------------------------------------------------------------------------------// implementation 'com.navercorp.lucy:lucy-xss-servlet:2.0.1' //-----------------------------------------------------------------------------------// //-----------------------------------------------------------------------------------// // slack webhook : logback slack webhook //-----------------------------------------------------------------------------------// implementation 'com.github.maricn:logback-slack-appender:1.4.0' //-----------------------------------------------------------------------------------// //-----------------------------------------------------------------------------------// // DB driver //-----------------------------------------------------------------------------------// runtimeOnly 'com.h2database:h2:1.4.199' // 2.0.202 사용시 에러 발생 // implementation 'org.postgresql:postgresql:42.3.1' //-----------------------------------------------------------------------------------// // sql parser lib //-----------------------------------------------------------------------------------// implementation 'dom4j:dom4j:1.6.1' implementation 'jaxen:jaxen:1.2.0' //-----------------------------------------------------------------------------------// //-----------------------------------------------------------------------------------// // 3rd-party lib //-----------------------------------------------------------------------------------// // AOP implementation 'org.aspectj:aspectjrt' implementation 'org.aspectj:aspectjweaver' // simple captcha implementation fileTree(dir: 'repo', include: ['*.jar']) // amazon aws s3 implementation 'com.amazonaws:aws-java-sdk-s3:1.12.131' // excel poi implementation 'org.apache.poi:poi-ooxml:4.1.2' //5.0.0 사용시 에러 : poi-ooxml-schemas implementation 'org.apache.poi:poi:4.1.2' //5.0.0 사용시 에러 implementation 'org.apache.commons:commons-lang3:3.12.0' // Object Deep-copy : Cloner implementation 'uk.com.robust-it:cloning:1.9.12' // Get Device 정보 : Device / UserAgent implementation 'org.springframework.mobile:spring-mobile-device:1.1.5.RELEASE' implementation 'eu.bitwalker:UserAgentUtils:1.21' // 문자열 type check : UniversalDetector - excel implementation 'com.googlecode.juniversalchardet:juniversalchardet:1.0.3' implementation 'org.apache.httpcomponents:httpcore:4.4.15' implementation 'commons-collections:commons-collections:3.2.2' implementation 'commons-fileupload:commons-fileupload:1.4' implementation 'commons-io:commons-io:2.11.0' implementation 'javax.mail:mail:1.4.7' implementation 'org.codehaus.jackson:jackson-core-asl:1.9.13' // google json implementation 'com.googlecode.json-simple:json-simple:1.1.1' implementation 'com.google.code.gson:gson:2.8.9' // jackson implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.13.1' implementation 'com.fasterxml.jackson.module:jackson-module-afterburner:2.13.1' implementation 'com.fasterxml.jackson.datatype:jackson-datatype-joda:2.13.1' implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3' // JAP LAZY loading시 객체생성 (OneToMay <--> ManyToOne) implementation 'com.fasterxml.jackson.datatype:jackson-datatype-hibernate5' //implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.5' // response xml implementation 'javax.xml.bind:jaxb-api:2.3.1' //implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.5' //-----------------------------------------------------------------------------------// // https://mvnrepository.com/artifact/com.googlecode.juniversalchardet/juniversalchardet implementation group: 'com.googlecode.juniversalchardet', name: 'juniversalchardet', version: '1.0.3' //-----------------------------------------------------------------------------------// // Test //-----------------------------------------------------------------------------------// testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.springframework.security:spring-security-test' // querydsl testImplementation "com.querydsl:querydsl-jpa:${queryDslVersion}" testAnnotationProcessor "com.querydsl:querydsl-apt:${queryDslVersion}" testCompileOnly 'org.projectlombok:lombok' testAnnotationProcessor 'org.projectlombok:lombok' //-----------------------------------------------------------------------------------// //-----------------------------------------------------------------------------------// // Development environment //-----------------------------------------------------------------------------------// runtimeOnly 'org.springframework.boot:spring-boot-devtools' providedCompile 'org.springframework.boot:spring-boot-starter-tomcat' //-----------------------------------------------------------------------------------// //-----------------------------------------------------------------------------------// // Deployment environment : war 배포를 위한 내장 톰캣 추가 //-----------------------------------------------------------------------------------// providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat' } tasks.withType(JavaCompile) { options.encoding = 'UTF-8' } test { exclude '**/*' //useJUnitPlatform() }