forked from kimhyungsik/ax_hub_mcp_tool
12 lines
540 B
Groovy
12 lines
540 B
Groovy
plugins {
|
|
// Spring Boot 3.5.11 version is managed by the root build.gradle.
|
|
id 'org.springframework.boot'
|
|
}
|
|
|
|
dependencies {
|
|
// dat-lib-datmt의 JAR/POM을 Maven Local 또는 사내 Nexus에서 내려받습니다.
|
|
// includeBuild 없이 이 Maven 좌표만으로 공통 MCP Server, Tool, MCI/EAI 기능을 사용합니다.
|
|
// 라이브러리 코드가 변경되면 먼저 dat-lib-datmt에서 publishToMavenLocal 또는 Nexus publish를 실행합니다.
|
|
implementation 'io.shinhanlife:dat-lib-datmt:0.0.1-SNAPSHOT'
|
|
}
|