빌드 환경 설정 및 kjb-safedb 연동 조정

- build.gradle: nexus 저장소 및 의존성 설정 정리
This commit is contained in:
curry772
2026-03-11 10:17:42 +09:00
parent ceabf19a77
commit 980fb37b1a
2 changed files with 74 additions and 64 deletions
+10 -1
View File
@@ -14,6 +14,15 @@ idea {
def nexusUrl = "https://nexus.eactive.synology.me:8090"
allprojects {
repositories {
maven {
url "${nexusUrl}/repository/maven-public/"
allowInsecureProtocol = true
}
}
}
def springVersion = "5.3.27"
//def quartzVersion = "2.2.1"
def queryDslVersion = "5.0.0"
@@ -72,7 +81,7 @@ tasks.withType(JavaCompile) {
}
dependencies {
api project(':kjb-safedb')
// api project(':kjb-safedb')
api "com.querydsl:querydsl-jpa:${queryDslVersion}"
api "com.querydsl:querydsl-apt:${queryDslVersion}"