-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (28 loc) · 939 Bytes
/
build.gradle
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
plugins {
id 'java'
}
group = 'net.shasankp000'
version = '0.1.1'
configurations.configureEach {
exclude group: 'com.google.protobuf', module: 'protobuf-java'
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
// SLF4J API
implementation 'org.slf4j:slf4j-api:2.0.5'
// Logback Classic (an implementation of SLF4J)
implementation 'ch.qos.logback:logback-classic:1.4.12'
implementation 'com.github.amithkoujalgi:ollama4j:1.0.77'
implementation 'com.github.FasterXML:jackson-databind:jackson-databind-2.17.2'
implementation 'com.google.code.gson:gson:2.8.9'
// https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc
implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.46.0.1'
}
test {
useJUnitPlatform()
}