-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
77 lines (66 loc) · 2.32 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.60'
}
group 'com.ardentbot'
version '1.0.01'
def impVersion = version
sourceCompatibility = 1.8
task stage(dependsOn: ['build', 'clean'])
build.mustRunAfter clean
jar {
manifest {
baseName = "Ardent"
version = "prd"
attributes "Main-Class": "com.ardentbot.core.ArdentRegisterKt",
'Implementation-Version': impVersion
}
from {
configurations
.compile
.findAll { !it.name.endsWith('pom') }
.collect { it.isDirectory() ? it : zipTree(it) }
}
}
repositories {
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
}
dependencies {
compile 'ch.obermuhlner:big-math:2.0.0'
compile 'net.dv8tion:JDA:4.1.1_116'
compile group: 'org.apache.commons', name: 'commons-csv', version: '1.5'
compile 'com.sedmelluq:jda-nas:1.1.0'
compile 'com.sedmelluq:lavaplayer:1.3.34'
compile 'com.adamratzman:spotify-api-kotlin:3.0.03'
compile ('com.google.apis:google-api-services-youtube:v3-rev204-1.23.0') {
exclude group: 'com.google.guava', module: 'guava-jdk5'
}
compile (group: 'com.google.apis', name: 'google-api-services-sheets', version: 'v4-rev530-1.23.0') {
exclude group: 'com.google.guava', module: 'guava-jdk5'
}
compile "com.sparkjava:spark-template-handlebars:2.7.1"
compile "com.sparkjava:spark-core:2.7.2"
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.5'
compile 'com.github.vbauer:yandex-translate-api:1.3.3'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.7'
compile 'com.google.code.gson:gson:2.8.5'
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
compile group: 'org.jsoup', name: 'jsoup', version: '1.11.3'
compile group: 'com.rethinkdb', name: 'rethinkdb-driver', version: '2.3.3'
compile group: 'org.reflections', name: 'reflections', version: '0.9.11'
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile group: 'org.json', name: 'json', version: '20190722'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
kotlin {
experimental {
coroutines "enable"
}
}