-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (31 loc) · 998 Bytes
/
Copy pathbuild.gradle
File metadata and controls
39 lines (31 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
plugins {
id 'java'
id 'org.springframework.boot' version '3.5.5'
id 'io.spring.dependency-management' version '1.1.7'
}
group = 'com.withplatzi'
version = '0.0.1-SNAPSHOT'
description = 'Construir la API de PlatziPlay usando Spring'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
//langChain4j
implementation 'dev.langchain4j:langchain4j-open-ai-spring-boot-starter:1.0.0-beta1'
implementation 'dev.langchain4j:langchain4j-spring-boot-starter:1.0.0-beta1'
//validation
implementation 'org.springframework.boot:spring-boot-starter-validation'
//doc openapi
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.9'
}
tasks.named('test') {
useJUnitPlatform()
}