빌드 환경 및 의존성 정리

- build.gradle: nexus 저장소 추가, com.diffplug.eclipse.apt 제거, kjb-safedb 주석 처리
- .gitignore: 빌드 산출물 제외 규칙 추가
This commit is contained in:
curry772
2026-03-11 10:17:34 +09:00
parent 30a6fca364
commit a0b2918cec
4 changed files with 16 additions and 5 deletions
+8 -1
View File
@@ -9,13 +9,20 @@ group = 'com.eactive.ext.kjb'
version = '1.0-SNAPSHOT'
def springVersion = "5.3.27"
def nexusUrl = "https://nexus.eactive.synology.me:8090"
repositories {
maven {
url "${nexusUrl}/repository/maven-public/"
allowInsecureProtocol = true
}
}
dependencies {
annotationProcessor "org.projectlombok:lombok:1.18.28"
api project(':elink-portal-common')
api project(":kjb-safedb")
//api project(":kjb-safedb")
api 'com.eactive.elink.common:elink-common-data:4.5.5'