빌드 환경 설정, 서브모듈 포인터 갱신, 인증서 파일 추가

- build.gradle: nexus 저장소 설정 추가
- .gitmodules: 서브모듈 URL 정리
- elink-online-*: 서브모듈 커밋 포인터 갱신
- certificate/: OAuth 인증서 및 keystore 파일 추가
- context.xml: WebContent META-INF 컨텍스트 설정 추가
This commit is contained in:
curry772
2026-03-11 10:18:41 +09:00
parent 1c5d67d486
commit ff2642a6d9
9 changed files with 51 additions and 16 deletions
+10 -8
View File
@@ -20,14 +20,16 @@ def queryDslVersion = "5.0.0"
def hibernateVersion = "5.6.15.Final"
def generatedJavaDir = "$buildDir/generated/java"
//def nexusUrl = "https://nexus.eactive.synology.me:8090"
//
//repositories {
// maven {
// url "${nexusUrl}/repository/maven-public/"
// allowInsecureProtocol = true
// }
//}
def nexusUrl = "https://nexus.eactive.synology.me:8090"
allprojects {
repositories {
maven {
url "${nexusUrl}/repository/maven-public/"
allowInsecureProtocol = true
}
}
}
java {
toolchain {