forked from UnderMybrella/EternalJukebox
-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
68 lines (54 loc) · 2.45 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
plugins {
id 'java'
id 'application'
id 'org.jetbrains.kotlin.jvm' version '1.8.20'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
apply plugin: 'kotlin'
mainClassName = "org.abimon.eternalJukebox.EternalJukebox"
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
ext {
kotlin_version = '1.8.20'
vertx_version = '3.9.0'
jackson_version = '2.9.2'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.5'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.3.5'
implementation "io.vertx:vertx-web:$vertx_version"
implementation "io.vertx:vertx-web-client:$vertx_version"
implementation "io.vertx:vertx-auth-oauth2:$vertx_version"
implementation "io.vertx:vertx-lang-kotlin:$vertx_version"
implementation "io.vertx:vertx-lang-kotlin-coroutines:$vertx_version"
implementation "com.h2database:h2:1.4.196"
implementation "mysql:mysql-connector-java:5.1.45"
implementation "com.zaxxer:HikariCP:2.7.7"
implementation "com.google.cloud.sql:mysql-socket-factory:1.0.5"
implementation 'org.jsoup:jsoup:1.10.2'
implementation 'com.auth0:java-jwt:3.2.0'
implementation 'com.github.kittinunf.fuel:fuel:2.2.1'
implementation 'com.github.kittinunf.fuel:fuel-coroutines:2.2.1'
implementation "ch.qos.logback:logback-classic:1.2.3"
implementation "com.fasterxml.jackson.core:jackson-core:$jackson_version"
implementation "com.fasterxml.jackson.core:jackson-annotations:$jackson_version"
implementation "com.fasterxml.jackson.core:jackson-databind:$jackson_version"
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:$jackson_version"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:$jackson_version"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version"
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:$jackson_version"
implementation "com.fasterxml.jackson.module:jackson-module-parameter-names:$jackson_version"
implementation 'com.github.ben-manes.caffeine:caffeine:2.8.2'
implementation "com.jakewharton.fliptables:fliptables:1.0.2"
}
compileKotlin {
kotlinOptions {
jvmTarget = '1.8'
}
}