-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (39 loc) · 1.08 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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '6.0.0'
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
}
group 'dev.approvers'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "com.google.firebase:firebase-admin:6.14.0"
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.9.5"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7'
implementation files("lib/jubilant-1.0-SNAPSHOT.jar")
implementation "io.netty:netty-tcnative-boringssl-static:2.0.3.Final"
compile "net.dv8tion:JDA:4.1.1_149"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
shadowJar {
manifest {
attributes 'Main-Class': 'dev.approvers.genkaidict.MainKt'
}
sourceSets {
main {
resources {
srcDir 'src/resources'
}
}
}
}