This repository was archived by the owner on Oct 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
48 lines (36 loc) · 1.5 KB
/
Copy pathbuild.gradle
File metadata and controls
48 lines (36 loc) · 1.5 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
45
46
47
48
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.31'
}
group 'DSCF'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
maven { url "https://dl.bintray.com/kotlin/exposed" } // Add exposed for async
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-reflect:1.3.31" // Kotlin updated, but didn't update this
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" //Kotlin
// https://github.com/DV8FromTheWorld/JDA
compile ('net.dv8tion:JDA:3.8.3_463') { // JDA
exclude module: 'opus-java'
}
// https://github.com/aschoerk/reflections8
compile 'net.oneandone.reflections8:reflections8:0.11.4' // Reflection8 (command registration)
// https://github.com/cbeust/klaxon
compile 'com.beust:klaxon:5.0.1' // Read and write settings
compile 'mysql:mysql-connector-java:8.0.16' // connect to the database
// https://github.com/JetBrains/Exposed
compile "org.jetbrains.exposed:exposed:0.9.1" // add exposed (EF database)
// https://github.com/Kotlin/kotlinx.coroutines
compile group: 'org.jetbrains.kotlinx', name: 'kotlinx-coroutines-jdk8', version: '1.2.1' // kotlinx (async stuff)
// https://github.com/MicroUtils/kotlin-logging/
compile 'io.github.microutils:kotlin-logging:1.6.24' // logging
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3' // Logger with colors
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}