-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (39 loc) · 1.34 KB
/
build.gradle
File metadata and controls
44 lines (39 loc) · 1.34 KB
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
plugins {
id 'com.github.johnrengelman.shadow' version '5.0.0'
id 'org.jetbrains.kotlin.jvm' version '1.3.21'
}
group 'me.fzzy.streamannounce'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
google()
}
shadowJar {
manifest {
attributes 'Main-Class': 'me.fzzy.announcebot.MainKt'
attributes 'Implementation-Version': version
}
destinationDirectory = file("run")
archiveFileName = "StreamAnnounce.jar"
}
dependencies {
compile 'com.google.api-client:google-api-client:1.23.0'
compile 'com.google.oauth-client:google-oauth-client-jetty:1.23.0'
compile 'com.google.apis:google-api-services-calendar:v3-rev355-1.25.0'
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.3.0-alpha4'
compile 'net.dv8tion:JDA:4.2.0_227'
implementation("club.minnced:jda-reactor:1.2.0")
compile 'com.google.code.gson:gson:2.8.5'
compile group: 'org.json', name: 'json', version: '20180813'
implementation 'com.github.scribejava:scribejava-apis:6.4.1'
compile group: 'net.sourceforge.tess4j', name: 'tess4j', version: '4.5.3'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}