-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
46 lines (32 loc) · 887 Bytes
/
build.gradle
File metadata and controls
46 lines (32 loc) · 887 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
40
41
42
43
/*
* This file was generated by the Gradle 'init' task.
*
* This is a general purpose Gradle build.
* To learn more about Gradle by exploring our Samples at https://docs.gradle.org/8.6/samples
*/
plugins {
id 'application'
}
group = 'com.celso'
version = '0.1.0'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
application {
mainClass = 'com.celso.llmagentjava.ProgrammaticPrompting'
}
repositories {
mavenCentral()
}
dependencies {
// Jackson (ObjectMapper). Localized in LLM.java to parsing JSON
implementation 'com.fasterxml.jackson.core:jackson-databind:2.18.2'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
// Reserved for future HTTP-level tests (LLM boundary)
testImplementation 'com.squareup.okhttp3:mockwebserver:4.12.0'
}
tasks.test {
useJUnitPlatform()
}