-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
39 lines (33 loc) · 991 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
38
39
plugins {
id 'java'
}
group 'net.modfest'
version '1.0.0-alpha.1'
repositories {
mavenCentral()
// repositories {
// maven { url 'https://jitpack.io' }
// }
}
dependencies {
implementation 'io.javalin:javalin:4.6.4'
implementation 'org.slf4j:slf4j-simple:1.7.32'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'commons-codec:commons-codec:1.15'
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation "com.discord4j:discord4j-core:3.2.2"
implementation "com.squareup.okhttp3:okhttp:4.10.0"
annotationProcessor 'io.soabase.record-builder:record-builder-processor:41'
compileOnly 'io.soabase.record-builder:record-builder-core:41'
}
jar {
duplicatesStrategy = 'include'
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
manifest {
attributes(
'Main-Class': 'net.modfest.platform.ModFestPlatform'
)
}
}