forked from vootelerotov/renovator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
40 lines (30 loc) · 822 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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.8.21"
application
}
group = "vootelerotov.github.io"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs = listOf("-Xjsr305=strict")
jvmTarget = "1.8"
}
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib")
implementation("com.github.ajalt.clikt:clikt:3.5.2")
implementation("com.spotify:github-client:0.1.57")
implementation("org.slf4j:slf4j-simple:2.0.7")
}
application {
mainClass.set("io.github.vootelerotov.renovator.RenovatorKt")
applicationName = "renovator"
}