1
0
Files
Advent-of-Code/buildSrc/src/main/kotlin/java-convention.gradle.kts
T
2021-12-01 19:32:38 +01:00

24 lines
467 B
Kotlin

plugins {
id("java-library")
id("junit-convention")
}
repositories {
mavenCentral()
jcenter()
maven { url = uri("https://dl.bintray.com/arrow-kt/arrow-kt/") }
maven { url = uri("https://kotlin.bintray.com/kotlinx") }
}
group = "be.vandewalleh"
version = "1.0-SNAPSHOT"
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}