-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
74 lines (67 loc) · 2.48 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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.60'
}
group 'com.adamratzman'
version '1.0.1'
sourceCompatibility = 1.8
task fatJar(type: Jar) {
manifest {
attributes 'Implementation-Title': 'Ardent',
'Implementation-Version': version,
'Main-Class': 'main.ArdentKt'
}
baseName = project.name + '-all'
from {
configurations
.compile
.findAll { !it.name.endsWith('pom') }
.collect { it.isDirectory() ? it : zipTree(it) }
}
with jar
}
repositories {
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
}
sourceSets {
main.java.srcDirs = ['src/main/java']
main.kotlin.srcDirs = ['src/main/kotlin']
main.resources.srcDirs = ['src/main/resources']
}
dependencies {
modules {
module("javax.servlet:servlet-api") {
replacedBy("javax.servlet:javax.servlet-api")
}
}
compile group: 'com.google.apis', name: 'google-api-services-sheets', version: 'v4-rev483-1.22.0'
compile 'net.dv8tion:JDA:4.1.1_116'
compile 'com.sedmelluq:jda-nas:1.1.0'
compile 'com.sedmelluq:lavaplayer:1.3.34'
compile group: 'com.rethinkdb', name: 'rethinkdb-driver', version: '2.3.3'
compile 'com.vdurmont:emoji-java:3.2.0'
compile group: 'com.google.code.gson', name: 'gson', version: '2.3.1'
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile group: 'com.sparkjava', name: 'spark-core', version: '2.6.0'
compile group: 'com.sparkjava', name: 'spark-template-handlebars', version: '2.5.5'
compile group: 'javax.servlet', name: 'javax.servlet-api', version: '3.1.0'
compile 'org.jsoup:jsoup:1.10.2'
compile 'com.github.vbauer:yandex-translate-api:1.2.4'
compile 'com.github.adamint:patreon-java:aea3da396a'
compile files('twitch.jar')
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
compile 'com.github.ArdentDiscord:simple-java-eval:-SNAPSHOT'
compile 'com.google.apis:google-api-services-youtube:v3-rev183-1.22.0'
compile group: 'commons-cli', name: 'commons-cli', version: '1.4'
compile group: 'org.apache.commons', name: 'commons-collections4', version: '4.1'
compile group: 'com.adamratzman', name: 'spotify-api-kotlin', version: '3.0.01'
compile 'com.udojava:EvalEx:1.15'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}