-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
57 lines (43 loc) · 1.42 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '7.1.2'
}
mainClassName = 'me.ailama.main.Main'
group = 'me.ailama'
version = '1.0'
assemble.dependsOn(shadowJar)
targetCompatibility = 21
sourceCompatibility = 21
shadowJar{
destinationDirectory.set(new File(projectDir,"./build/shadow"))
from { file(".env") }
}
repositories {
mavenCentral()
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'
}
maven {
name 'm2-duncte123'
url 'https://m2.duncte123.dev/releases'
}
maven {
url "https://m2.chew.pro/snapshots"
}
maven {
url 'https://jitpack.io'
}
}
dependencies {
implementation group: 'io.github.freya022', name: 'JDA', version: '8964d1b'
implementation group: 'io.github.cdimascio', name: 'java-dotenv', version: '5.2.2'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.5.6'
implementation group: 'dev.langchain4j', name: 'langchain4j-ollama', version: '0.35.0'
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '5.0.0-alpha.14'
implementation group: 'joda-time', name: 'joda-time', version: '2.12.7'
implementation group: 'org.jsoup', name: 'jsoup', version: '1.17.2'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.0'
implementation 'dev.langchain4j:langchain4j-easy-rag:0.35.0'
}