Update build.gradle

This commit is contained in:
jei007
2024-02-29 09:23:11 +09:00
committed by GitHub
parent ed5671189c
commit 7dad5c8742

View File

@@ -1,14 +1,14 @@
plugins { plugins {
id 'org.springframework.boot' version '2.7.0' id 'org.springframework.boot' version '2.7.12'
id "org.sonarqube" version "3.3" id 'org.sonarqube' version '3.5.0.2730'
id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'io.spring.dependency-management' version '1.1.0'
// querydsl // querydsl
id 'com.ewerk.gradle.plugins.querydsl' version '1.0.10' id 'com.ewerk.gradle.plugins.querydsl' version '1.0.10'
id 'java' id 'java'
} }
group = 'org.egovframe.cloud' group = 'org.egovframe.cloud'
version = '0.1' version = '1.0.0'
sourceCompatibility = '1.8' sourceCompatibility = '1.8'
configurations { configurations {
@@ -23,14 +23,14 @@ repositories {
} }
ext { ext {
set('springCloudVersion', "2021.0.3") set('springCloudVersion', '2021.0.7')
set('log4j2.version', "2.17.2") // log4j 보안 패치 set('log4j2.version', '2.20.0') // log4j 보안 패치
} }
dependencies { dependencies {
implementation files('../module-common/build/libs/module-common-4.1.0-plain.jar') // 공통 모듈, @ComponentScan(basePackages={"org.egovframe.cloud"}) 추가해야 적용된다 // implementation files('../module-common/build/libs/module-common-4.2.0-plain.jar') // 공통 모듈, @ComponentScan(basePackages={"org.egovframe.cloud"}) 추가해야 적용된다
// implementation 'org.egovframe.cloud:module-common:0.1' implementation 'org.egovframe.cloud:module-common:4.2.0'
implementation('org.egovframe.rte:org.egovframe.rte.fdl.cmmn:4.1.0') { implementation('org.egovframe.rte:org.egovframe.rte.fdl.cmmn:4.2.0') {
exclude group: 'org.egovframe.rte', module: 'org.egovframe.rte.fdl.logging' exclude group: 'org.egovframe.rte', module: 'org.egovframe.rte.fdl.logging'
} }
implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
@@ -48,8 +48,8 @@ dependencies {
implementation 'org.apache.tomcat.embed:tomcat-embed-core:9.0.73' implementation 'org.apache.tomcat.embed:tomcat-embed-core:9.0.73'
implementation 'org.apache.tomcat.embed:tomcat-embed-el:9.0.73' implementation 'org.apache.tomcat.embed:tomcat-embed-el:9.0.73'
implementation 'org.apache.tomcat.embed:tomcat-embed-websocket:9.0.73' implementation 'org.apache.tomcat.embed:tomcat-embed-websocket:9.0.73'
implementation 'net.logstash.logback:logstash-logback-encoder:7.2' // logstash logback implementation 'net.logstash.logback:logstash-logback-encoder:7.4' // logstash logback
implementation 'mysql:mysql-connector-java' implementation 'mysql:mysql-connector-java:8.0.33'
implementation 'io.jsonwebtoken:jjwt:0.9.1' implementation 'io.jsonwebtoken:jjwt:0.9.1'
// querydsl // querydsl
implementation 'com.querydsl:querydsl-jpa:5.0.0' implementation 'com.querydsl:querydsl-jpa:5.0.0'
@@ -62,8 +62,8 @@ dependencies {
implementation 'org.springframework.cloud:spring-cloud-stream-binder-rabbit' implementation 'org.springframework.cloud:spring-cloud-stream-binder-rabbit'
// openapi docs // openapi docs
implementation 'org.springdoc:springdoc-openapi-webmvc-core:1.6.9' implementation 'org.springdoc:springdoc-openapi-webmvc-core:1.7.0'
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor" annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
// lombok // lombok
implementation 'org.projectlombok:lombok' implementation 'org.projectlombok:lombok'
@@ -72,10 +72,11 @@ dependencies {
testAnnotationProcessor 'org.projectlombok:lombok' testAnnotationProcessor 'org.projectlombok:lombok'
testImplementation 'com.h2database:h2' testImplementation 'com.h2database:h2'
testImplementation 'com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.8.0' // 테스트시에만 출력 testImplementation 'com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.8.1' // 테스트시에만 출력
testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.javassist:javassist:3.29.0-GA' implementation 'org.javassist:javassist:3.29.2-GA'
implementation 'org.webjars:webjars-locator-core:0.53'
} }
dependencyManagement { dependencyManagement {