73 lines
2.4 KiB
Groovy
73 lines
2.4 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot' version '4.0.5' apply false
|
|
id 'io.spring.dependency-management' version '1.1.6' apply false
|
|
}
|
|
|
|
allprojects {
|
|
group = 'io.shinhanlife'
|
|
version = '0.0.1-SNAPSHOT'
|
|
}
|
|
|
|
subprojects {
|
|
apply plugin: 'java'
|
|
apply plugin: 'io.spring.dependency-management'
|
|
|
|
java {
|
|
sourceCompatibility = '21'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://repo.spring.io/milestone' }
|
|
maven { url 'https://repo.spring.io/snapshot' }
|
|
}
|
|
|
|
dependencyManagement {
|
|
imports {
|
|
mavenBom org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES
|
|
mavenBom "org.springframework.ai:spring-ai-bom:2.0.0"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'org.projectlombok:lombok:1.18.32'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.32'
|
|
annotationProcessor 'org.projectlombok:lombok-mapstruct-binding:0.2.0'
|
|
implementation 'org.mapstruct:mapstruct:1.5.5.Final'
|
|
annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.5.Final'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
|
}
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.compilerArgs << '-parameters'
|
|
options.compilerArgs << '-Amapstruct.defaultComponentModel=spring'
|
|
}
|
|
|
|
tasks.withType(Test) {
|
|
useJUnitPlatform()
|
|
}
|
|
}
|
|
|
|
# --- 신한라이프 EAI/MCI 연계 IP 정보 (개발 환경) ---
|
|
shinhan.integration.envrTypeCd=D
|
|
shinhan.integration.eai.url=http://10.176.32.181
|
|
shinhan.integration.internalMci.url=http://10.176.32.173
|
|
shinhan.integration.bancaMci.url=http://10.176.32.117
|
|
shinhan.integration.externalMci.url=http://10.176.32.176
|
|
|
|
# --- 신한라이프 EAI/MCI 연계 IP 정보 (테스트 환경) ---
|
|
shinhan.integration.envrTypeCd=T
|
|
shinhan.integration.eai.url=http://10.174.32.181
|
|
shinhan.integration.internalMci.url=http://10.174.32.173
|
|
shinhan.integration.bancaMci.url=http://10.174.32.117
|
|
shinhan.integration.externalMci.url=http://10.176.32.177
|
|
|
|
# --- 신한라이프 EAI/MCI 연계 IP 정보 (운영 환경) ---
|
|
shinhan.integration.envrTypeCd=R
|
|
shinhan.integration.eai.url=http://10.172.32.181
|
|
shinhan.integration.internalMci.url=http://10.172.32.173
|
|
shinhan.integration.bancaMci.url=http://10.172.32.117
|
|
shinhan.integration.externalMci.url=http://10.172.32.177
|