1 Commits

Author SHA1 Message Date
curry772 0408abb890 config: local reposilite 환경으로 변경 2026-04-03 17:22:56 +09:00
4 changed files with 18 additions and 7 deletions
+3
View File
@@ -0,0 +1,3 @@
/main/
/test/
/default/
+11 -5
View File
@@ -9,12 +9,18 @@ group = 'com.eactive.ext.kjb'
version = '1.0-SNAPSHOT' version = '1.0-SNAPSHOT'
def springVersion = "5.3.27" def springVersion = "5.3.27"
def nexusUrl = "https://nexus.eactive.synology.me:8090" def reposiliteUrl = "http://localhost:8080"
repositories { allprojects {
maven { repositories {
url "${nexusUrl}/repository/maven-public/" maven {
allowInsecureProtocol = true url "${reposiliteUrl}/private"
allowInsecureProtocol = true
credentials {
username = reposiliteUser
password = reposilitePassword
}
}
} }
} }
+2
View File
@@ -0,0 +1,2 @@
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 EMSAPP.TSEAIRM24 WHERE PRPTYGROUPNAME = 'Monitoring' AND PRPTYNAME = '"); sbDelete.append("DELETE FROM EMSADM.TSEAIRM24 WHERE PRPTYGROUPNAME = 'Monitoring' AND PRPTYNAME = '");
sbDelete.append(anno.key()); sbDelete.append(anno.key());
sbDelete.append("';\n"); sbDelete.append("';\n");
sb.append("insert into EMSAPP.TSEAIRM24 (PRPTYGROUPNAME, PRPTYNAME, PRPTY2VAL) values ('Monitoring', "); sb.append("insert into EMSADM.TSEAIRM24 (PRPTYGROUPNAME, PRPTYNAME, PRPTY2VAL) values ('Monitoring', ");
String key = anno.key(); String key = anno.key();
String defValue = anno.defaultValue(); String defValue = anno.defaultValue();