Archived
1
0
Fork 0
This repository has been archived on 2025-03-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
uranos/blokk-block-codecs/build.gradle.kts
2020-11-15 21:56:17 +01:00

25 lines
407 B
Kotlin

plugins {
kotlin("jvm")
}
group = rootProject.group
version = rootProject.version
repositories {
mavenCentral()
maven("https://jitpack.io")
}
dependencies {
}
tasks {
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs = listOf(
"-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
"-progressive"
)
}
}