-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
41 lines (32 loc) · 881 Bytes
/
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
plugins {
kotlin("jvm") version "1.7.10"
kotlin("kapt") version "1.7.10" // TODO: Use single version number
application
}
group = "com.myterminal"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven {
url = uri("https://jitpack.io")
} // Add jitpack
}
dependencies {
// Cyclone
implementation("com.github.theapache64:cyclone:1.0.0-alpha02")
// Dagger : A fast dependency injector for Android and Java.
val daggerVersion = "2.44.2"
implementation("com.google.dagger:dagger:$daggerVersion")
kapt("com.google.dagger:dagger-compiler:$daggerVersion")
// Test deps
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
application {
mainClass.set("com.myterminal.app.AppKt")
}