-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
69 lines (55 loc) · 2.05 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
58
59
60
61
62
63
64
65
66
67
68
69
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.8.0"
application
id("com.github.johnrengelman.shadow") version "7.1.2"
jacoco
id("com.google.protobuf") version "0.9.4"
}
group = "com.ttymonkey"
version = "1.0.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
implementation("io.vertx:vertx-core:${property("vertxVersion")}")
implementation("io.vertx:vertx-web:${property("vertxVersion")}")
implementation("io.vertx:vertx-lang-kotlin:${property("vertxVersion")}")
implementation("io.vertx:vertx-lang-kotlin-coroutines:${property("vertxVersion")}")
testImplementation("io.vertx:vertx-junit5:${property("vertxVersion")}")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:${property("jacksonVersion")}")
// testing
testImplementation("org.junit.jupiter:junit-jupiter:${property("junitJupiterVersion")}")
testImplementation("org.assertj:assertj-core:${property("assertJVersion")}")
testImplementation("io.mockk:mockk:${property("mockkVersion")}")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.1")
// DI
implementation("io.insert-koin:koin-core:${property("koinVersion")}")
// logging
implementation("org.slf4j:slf4j-api:${property("slf4jVersion")}")
implementation("ch.qos.logback:logback-classic:${property("logbackVersion")}")
// protobuf
implementation("com.google.protobuf:protobuf-kotlin:${property("protobufVersion")}")
}
val compileKotlin: KotlinCompile by tasks
compileKotlin.kotlinOptions.jvmTarget = "17"
tasks.withType<Test> {
useJUnitPlatform()
}
application {
mainClass.set("com.ttymonkey.deliverysimulation.Main")
}
tasks.shadowJar {
archiveBaseName.set("delivery-simulation")
archiveVersion.set("1.0.0")
archiveClassifier.set("")
manifest {
attributes["Main-Class"] = "com.ttymonkey.deliverysimulation.Main"
}
mergeServiceFiles()
}
protobuf {
protoc {
artifact = "com.google.protobuf:protoc:${property("protobufVersion")}"
}
}