Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ab42f2e429 | |||
| ca8c7d9d30 | |||
| d2fde8f99e | |||
| 4cb1df3a9f | |||
| 86737ee91b | |||
| 6b49e518e5 | |||
| d42fd1d9be | |||
| 777ca3a6a6 | |||
| d32005450f | |||
| ea68606fbc |
@@ -14,6 +14,6 @@ eapim-admin 에서 포함하여 테스트 이용시 느린 부팅 속도 떄문
|
|||||||
GIT_SSH_COMMAND='ssh -i ~/.ssh/id_rsa-jenkins' git pull origin jenkins_with_weblogic
|
GIT_SSH_COMMAND='ssh -i ~/.ssh/id_rsa-jenkins' git pull origin jenkins_with_weblogic
|
||||||
|
|
||||||
# test run
|
# test run
|
||||||
KJB_EAPIM_TEST_ENABLED=TRUE kjb-gradle.sh :eapim-admin-kjb:test --tests "com.eactive.ext.kjb.ums.test.UmsTest.testSms" -Psafedb
|
KJB_EAPIM_TEST_ENABLED=TRUE ./gradlew :eapim-admin-kjb:test --tests "com.eactive.ext.kjb.ums.test.UmsTest.testSms" -Psafedb
|
||||||
KJB_EAPIM_TEST_ENABLED=TRUE kjb-gradle.sh :eapim-admin-kjb:test --tests "com.eactive.ext.kjb.ums.test.UmsTest.testEmail" -Psafedb
|
KJB_EAPIM_TEST_ENABLED=TRUE ./gradlew :eapim-admin-kjb:test --tests "com.eactive.ext.kjb.ums.test.UmsTest.testEmail" -Psafedb
|
||||||
```
|
```
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
/main/
|
|
||||||
/test/
|
|
||||||
/default/
|
|
||||||
+6
-10
@@ -9,18 +9,12 @@ group = 'com.eactive.ext.kjb'
|
|||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
|
|
||||||
def springVersion = "5.3.27"
|
def springVersion = "5.3.27"
|
||||||
def reposiliteUrl = "http://localhost:8080"
|
def nexusUrl = "https://nexus.eactive.synology.me:8090"
|
||||||
|
|
||||||
allprojects {
|
repositories {
|
||||||
repositories {
|
|
||||||
maven {
|
maven {
|
||||||
url "${reposiliteUrl}/private"
|
url "${nexusUrl}/repository/maven-public/"
|
||||||
allowInsecureProtocol = true
|
allowInsecureProtocol = true
|
||||||
credentials {
|
|
||||||
username = reposiliteUser
|
|
||||||
password = reposilitePassword
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -32,7 +26,9 @@ dependencies {
|
|||||||
|
|
||||||
api 'com.eactive.elink.common:elink-common-data:4.5.5'
|
api 'com.eactive.elink.common:elink-common-data:4.5.5'
|
||||||
|
|
||||||
implementation fileTree(dir: "ext-libs", include: ["*.jar"])
|
// log4j-core / log4j-1.2-api 는 log4j-to-slf4j 로 대체 (Hibernate/iBATIS 로그를 logback 으로 라우팅)
|
||||||
|
implementation fileTree(dir: "ext-libs", include: ["*.jar"], exclude: ["log4j-core-*.jar", "log4j-1.2-api-*.jar"])
|
||||||
|
implementation 'org.apache.logging.log4j:log4j-to-slf4j:2.17.2'
|
||||||
|
|
||||||
// api "org.springframework:spring-context:${springVersion}"
|
// api "org.springframework:spring-context:${springVersion}"
|
||||||
// api "org.springframework:spring-webmvc:${springVersion}"
|
// api "org.springframework:spring-webmvc:${springVersion}"
|
||||||
|
|||||||
@@ -1,2 +0,0 @@
|
|||||||
reposiliteUser=admin
|
|
||||||
reposilitePassword=BFoZsHrQU4lmJf9rruDdcsPgE0gltKfRdTjAx04IgvFhrd5q07QwMFZqeLHFv+5n
|
|
||||||
@@ -17,11 +17,11 @@ public class KjbPropertyUtil {
|
|||||||
KjbPropertyValue anno = field.getAnnotation(KjbPropertyValue.class);
|
KjbPropertyValue anno = field.getAnnotation(KjbPropertyValue.class);
|
||||||
|
|
||||||
if (anno != null) {
|
if (anno != null) {
|
||||||
sbDelete.append("DELETE FROM EMSADM.TSEAIRM24 WHERE PRPTYGROUPNAME = 'Monitoring' AND PRPTYNAME = '");
|
sbDelete.append("DELETE FROM EMSAPP.TSEAIRM24 WHERE PRPTYGROUPNAME = 'Monitoring' AND PRPTYNAME = '");
|
||||||
sbDelete.append(anno.key());
|
sbDelete.append(anno.key());
|
||||||
sbDelete.append("';\n");
|
sbDelete.append("';\n");
|
||||||
|
|
||||||
sb.append("insert into EMSADM.TSEAIRM24 (PRPTYGROUPNAME, PRPTYNAME, PRPTY2VAL) values ('Monitoring', ");
|
sb.append("insert into EMSAPP.TSEAIRM24 (PRPTYGROUPNAME, PRPTYNAME, PRPTY2VAL) values ('Monitoring', ");
|
||||||
|
|
||||||
String key = anno.key();
|
String key = anno.key();
|
||||||
String defValue = anno.defaultValue();
|
String defValue = anno.defaultValue();
|
||||||
|
|||||||
Reference in New Issue
Block a user