67 lines
2.0 KiB
Groovy
67 lines
2.0 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot' version '3.5.4'
|
|
id 'io.spring.dependency-management' version '1.1.7'
|
|
}
|
|
|
|
group = 'com.mjon'
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
compileOnly {
|
|
extendsFrom annotationProcessor
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
|
|
maven { url "https://repo.spring.io/milestone" }
|
|
maven { url "https://repo.spring.io/snapshot" }
|
|
}
|
|
|
|
ext {
|
|
set('springAiVersion', "1.0.0")
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
|
|
implementation 'org.springframework.boot:spring-boot-starter-hateoas'
|
|
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
|
implementation("org.springframework.boot:spring-boot-starter-web") {
|
|
exclude group: "org.springframework.boot", module: "spring-boot-starter-webflux"
|
|
}
|
|
implementation 'org.springframework.ai:spring-ai-advisors-vector-store'
|
|
implementation 'org.springframework.ai:spring-ai-pdf-document-reader'
|
|
implementation 'org.springframework.ai:spring-ai-starter-model-chat-memory'
|
|
implementation 'org.springframework.ai:spring-ai-starter-model-ollama'
|
|
implementation 'org.springframework.ai:spring-ai-starter-vector-store-pgvector'
|
|
implementation 'org.springframework.session:spring-session-data-redis'
|
|
compileOnly 'org.projectlombok:lombok'
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
|
|
|
implementation 'org.apache.poi:poi-ooxml:5.3.0'
|
|
|
|
// POI core
|
|
implementation 'org.apache.poi:poi:5.3.0'
|
|
// XLSX 지원
|
|
implementation 'org.apache.poi:poi-ooxml:5.3.0'
|
|
|
|
}
|
|
|
|
dependencyManagement {
|
|
imports {
|
|
mavenBom "org.springframework.ai:spring-ai-bom:${springAiVersion}"
|
|
}
|
|
}
|
|
|