jenkins, weblogic 대응 작업
This commit is contained in:
+39
-39
@@ -64,52 +64,52 @@ dependencies {
|
||||
// implementation ('com.eactive:elink-online-transformer:4.5-SNAPSHOT') { changing = true }
|
||||
// implementation ('com.eactive:elink-online-common:4.5-SNAPSHOT') { changing = true }
|
||||
// implementation ('com.eactive:elink-online-emsclient:4.5-SNAPSHOT') { changing = true }
|
||||
implementation project(':elink-online-core')
|
||||
implementation project(':elink-online-transformer')
|
||||
implementation project(':elink-online-common')
|
||||
implementation project(':elink-online-emsclient')
|
||||
implementation project(':elink-online-core')
|
||||
implementation project(':elink-online-transformer')
|
||||
implementation project(':elink-online-common')
|
||||
implementation project(':elink-online-emsclient')
|
||||
|
||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||
|
||||
// implementation 'org.xerial:sqlite-jdbc:3.39.2.1'
|
||||
|
||||
/*
|
||||
mina-filter-ssl에 Exclude 설정을 하였으나
|
||||
mina-integration-spring에서도 mina-filter-ssl을 참조하여
|
||||
해당 "mina-filter-ssl" 참조관계로 인해 ".apache.mina:mina-core:1.0.10"가 참조되는 일이 발생하여
|
||||
두 라이브러르 모두 "exclude group" 설정을 추가함
|
||||
아래의 configurations 처럼 ALL로 제거하여도 무방함 참고
|
||||
configurations {
|
||||
all*.exclude group: 'org.apache.mina', module:'mina-core'
|
||||
}
|
||||
*/
|
||||
implementation ("org.apache.mina:mina-filter-ssl:1.0.10"){
|
||||
exclude group: 'org.apache.mina'
|
||||
}
|
||||
implementation ('org.apache.mina:mina-integration-spring:1.0.10'){
|
||||
exclude group: 'org.apache.mina'
|
||||
}
|
||||
/*
|
||||
mina-filter-ssl에 Exclude 설정을 하였으나
|
||||
mina-integration-spring에서도 mina-filter-ssl을 참조하여
|
||||
해당 "mina-filter-ssl" 참조관계로 인해 ".apache.mina:mina-core:1.0.10"가 참조되는 일이 발생하여
|
||||
두 라이브러르 모두 "exclude group" 설정을 추가함
|
||||
아래의 configurations 처럼 ALL로 제거하여도 무방함 참고
|
||||
configurations {
|
||||
all*.exclude group: 'org.apache.mina', module:'mina-core'
|
||||
}
|
||||
*/
|
||||
implementation ("org.apache.mina:mina-filter-ssl:1.0.10"){
|
||||
exclude group: 'org.apache.mina'
|
||||
}
|
||||
implementation ('org.apache.mina:mina-integration-spring:1.0.10'){
|
||||
exclude group: 'org.apache.mina'
|
||||
}
|
||||
|
||||
//implementation 'com.eactive:java_websocket-custom:1.0'
|
||||
|
||||
//implementation "tmax:webt:7.0.2.0-r11661-forJEUS8.0"
|
||||
//implementation "tmax:webtasync:2.0.3.1-r11801-forJEUS8.1"
|
||||
//implementation 'com.eactive:java_websocket-custom:1.0'
|
||||
|
||||
//implementation "tmax:webt:7.0.2.0-r11661-forJEUS8.0"
|
||||
//implementation "tmax:webtasync:2.0.3.1-r11801-forJEUS8.1"
|
||||
|
||||
implementation 'org.graylog2:gelfj:1.1.16'
|
||||
implementation 'org.graylog2:gelfj:1.1.16'
|
||||
|
||||
|
||||
implementation "org.springframework:spring-webmvc:${springVersion}"
|
||||
implementation "org.springframework.security:spring-security-jwt:1.1.1.RELEASE"
|
||||
implementation "org.springframework:spring-webmvc:${springVersion}"
|
||||
implementation "org.springframework.security:spring-security-jwt:1.1.1.RELEASE"
|
||||
|
||||
//implementation "com.eactive:ojdbc8:1.0"
|
||||
//implementation "org.postgresql:postgresql:42.2.23"
|
||||
//implementation "com.eactive:ojdbc8:1.0"
|
||||
//implementation "org.postgresql:postgresql:42.2.23"
|
||||
implementation 'org.mariadb.jdbc:mariadb-java-client:2.7.4'
|
||||
//implementation "com.oracle.ojdbc:ojdbc8:19.3.0.0"
|
||||
|
||||
implementation 'org.slf4j:jul-to-slf4j:1.7.35'
|
||||
implementation 'org.slf4j:jcl-over-slf4j:1.7.35'
|
||||
implementation 'org.slf4j:log4j-over-slf4j:1.7.35'
|
||||
implementation 'org.slf4j:slf4j-api:1.7.35'
|
||||
implementation 'org.slf4j:jul-to-slf4j:1.7.35'
|
||||
implementation 'org.slf4j:jcl-over-slf4j:1.7.35'
|
||||
implementation 'org.slf4j:log4j-over-slf4j:1.7.35'
|
||||
implementation 'org.slf4j:slf4j-api:1.7.35'
|
||||
implementation 'co.elastic.logging:logback-ecs-encoder:1.5.0'
|
||||
|
||||
implementation 'net.sf.j8583:j8583:1.18.0'
|
||||
@@ -149,11 +149,11 @@ configurations.all {
|
||||
}
|
||||
|
||||
task settingEclipseEncoding {
|
||||
if (project.file('.settings').exists()) {
|
||||
File f = file('.settings/org.eclipse.core.resources.prefs')
|
||||
f.write('eclipse.preferences.version=1\n')
|
||||
f.append('encoding/<project>=utf-8')
|
||||
}
|
||||
if (project.file('.settings').exists()) {
|
||||
File f = file('.settings/org.eclipse.core.resources.prefs')
|
||||
f.write('eclipse.preferences.version=1\n')
|
||||
f.append('encoding/<project>=utf-8')
|
||||
}
|
||||
}
|
||||
|
||||
//eclipseJdt.finalizedBy settingEclipseEncoding
|
||||
|
||||
Reference in New Issue
Block a user