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

- 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
+5 -5
View File
@@ -1,15 +1,15 @@
[submodule "elink-online-core"] [submodule "elink-online-core"]
path = elink-online-core path = elink-online-core
url = ssh://git@192.168.240.178:18081/eapim/elink-online-core.git url = https://git.eactive.synology.me:8090/kjb-eapim/elink-online-core.git
[submodule "elink-online-transformer"] [submodule "elink-online-transformer"]
path = elink-online-transformer path = elink-online-transformer
url = ssh://git@192.168.240.178:18081/eapim/elink-online-transformer.git url = https://git.eactive.synology.me:8090/kjb-eapim/elink-online-transformer.git
[submodule "elink-online-common"] [submodule "elink-online-common"]
path = elink-online-common path = elink-online-common
url = ssh://git@192.168.240.178:18081/eapim/elink-online-common.git url = https://git.eactive.synology.me:8090/kjb-eapim/elink-online-common.git
[submodule "elink-online-emsclient"] [submodule "elink-online-emsclient"]
path = elink-online-emsclient path = elink-online-emsclient
url = ssh://git@192.168.240.178:18081/eapim/elink-online-emsclient.git url = https://git.eactive.synology.me:8090/kjb-eapim/elink-online-emsclient.git
[submodule "elink-online-core-jpa"] [submodule "elink-online-core-jpa"]
path = elink-online-core-jpa path = elink-online-core-jpa
url = ssh://git@192.168.240.178:18081/eapim/elink-online-core-jpa.git url = https://git.eactive.synology.me:8090/kjb-eapim/elink-online-core-jpa.git
+24
View File
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<Context>
<Resource auth="Container"
driverClassName="oracle.jdbc.OracleDriver"
maxIdle="10" maxTotal="20" maxWaitMillis="10000"
name="jdbc/dsOBP_AGW"
type="javax.sql.DataSource"
url="jdbc:oracle:thin:@//localhost:1599/DAPM"
username="AGWADM" password="elink1234"/>
<Resource auth="Container"
driverClassName="oracle.jdbc.OracleDriver"
maxIdle="10" maxTotal="20" maxWaitMillis="10000"
name="jdbc/dsOBP_EMS"
type="javax.sql.DataSource"
url="jdbc:oracle:thin:@//localhost:1599/DAPM"
username="EMSADM" password="elink1234"/>
<Resource auth="Container"
driverClassName="oracle.jdbc.OracleDriver"
maxIdle="10" maxTotal="20" maxWaitMillis="10000"
name="jdbc/dsOBP_BAP"
type="javax.sql.DataSource"
url="jdbc:oracle:thin:@//localhost:1599/DAPM"
username="BAPADM" password="elink1234"/>
</Context>
+10 -8
View File
@@ -20,14 +20,16 @@ def queryDslVersion = "5.0.0"
def hibernateVersion = "5.6.15.Final" def hibernateVersion = "5.6.15.Final"
def generatedJavaDir = "$buildDir/generated/java" def generatedJavaDir = "$buildDir/generated/java"
//def nexusUrl = "https://nexus.eactive.synology.me:8090" def nexusUrl = "https://nexus.eactive.synology.me:8090"
//
//repositories { allprojects {
// maven { repositories {
// url "${nexusUrl}/repository/maven-public/" maven {
// allowInsecureProtocol = true url "${nexusUrl}/repository/maven-public/"
// } allowInsecureProtocol = true
//} }
}
}
java { java {
toolchain { toolchain {
Binary file not shown.
@@ -0,0 +1,9 @@
-----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjT8R5ujHcHCsW7/pnw4h
JxuQlvg0rH6EFzrPoJe65FrVXuZSyWJUrzK+hCwx27ci1Q1cnArgCFZuia+SO754
dl+vmAQQvLFpcUxp1DSSh2T8nr0bcBftZfmdFZuAWJ4rAG2ZuMg344DTmEa+vrZL
86yFnJvy7GnS3jDucz0LzRjAIm7JcVaPf9TbeDnRyiiejSlQgTuMvszsw4w4/Pxs
DhYPoGIMv6Vu9yJzEozhbz0pgehaa32dqVSDAzZTzGrpiKVJTF2wYxJZdL9V7vXw
AOCq92vywvO6SW96hSIaClo3L8AouLYm4Gp1ZqD+k8LW3r0Re8gk3Na1Jp6/NvbB
CQIDAQAB
-----END PUBLIC KEY-----
Binary file not shown.