-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (22 loc) · 722 Bytes
/
Copy pathbuild.gradle
File metadata and controls
28 lines (22 loc) · 722 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
plugins {
id 'java'
}
group = 'org.example'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
def lc4jVersion = "1.13.0"
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation "dev.langchain4j:langchain4j:${lc4jVersion}"
implementation "dev.langchain4j:langchain4j-open-ai:${lc4jVersion}"
implementation "dev.langchain4j:langchain4j-google-ai-gemini:${lc4jVersion}"
implementation "dev.langchain4j:langchain4j-anthropic:${lc4jVersion}"
implementation "dev.langchain4j:langchain4j-mistral-ai:${lc4jVersion}"
implementation 'org.slf4j:slf4j-nop:2.0.7'
}
test {
useJUnitPlatform()
}