-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle.kts
58 lines (48 loc) · 1.41 KB
/
build.gradle.kts
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
//________________________________________________________________________________
// BUILD SCRIPT
//________________________________________________________________________________
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath(kotlin("gradle-plugin", version = "1.3.70"))
}
}
plugins {
kotlin("jvm") version "1.3.70"
id("com.github.johnrengelman.shadow") version "5.2.0"
}
//________________________________________________________________________________
// VERSIONS
//________________________________________________________________________________
val flinkVersion by extra("1.8.2")
val flinkScalaRuntime by extra { "2.12" }
val guavaVersion by extra { "28.0-jre" }
val juniperVersion by extra { "5.4.0" }
val jacksonVersion by extra { "2.10.3"}
val kotlinVersion by extra { "1.3.70"}
val kotlinCoroutinesVersion by extra { "1.3.5"}
val koinVersion by extra { "2.1.5"}
val vertxVersion by extra {"3.9.0"}
//________________________________________________________________________________
// GLOBAL
//________________________________________________________________________________
allprojects {
tasks.register("hello") {
doLast {
println("I'm ${this.project.name}")
}
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
}
tasks {
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
}
}