forked from daviirodrig/EternalJukebox
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
68 lines (53 loc) · 2.58 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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id 'application'
id 'org.jetbrains.kotlin.jvm' version '1.9.25'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
mainClassName = 'org.abimon.eternalJukebox.EternalJukebox'
sourceCompatibility = 11
targetCompatibility = 11
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
ext {
kotlin_version = '1.9.25'
vertx_version = '3.9.16'
jackson_version = '2.17.2'
new_pipe_extractor_version = 'master-SNAPSHOT'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1"
implementation "io.vertx:vertx-web:$vertx_version"
implementation "io.vertx:vertx-web-client:$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 'com.mysql:mysql-connector-j:9.0.0'
implementation 'com.zaxxer:HikariCP:5.1.0'
implementation 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.20.0'
implementation 'com.auth0:java-jwt:4.4.0'
implementation 'com.github.kittinunf.fuel:fuel:2.3.1'
implementation 'com.github.kittinunf.fuel:fuel-coroutines:2.3.1'
implementation 'ch.qos.logback:logback-classic:1.5.7'
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:3.1.8'
implementation 'com.jakewharton.fliptables:fliptables:1.1.1'
implementation "com.github.teamnewpipe.NewPipeExtractor:extractor:$new_pipe_extractor_version"
implementation "com.github.teamnewpipe.NewPipeExtractor:timeago-parser:$new_pipe_extractor_version"
}
tasks.withType(KotlinCompile).configureEach {
kotlinOptions {
jvmTarget = '11'
}
}