mirror of
https://github.com/HMCore/Core-ktx.git
synced 2025-12-10 13:36:22 +00:00
28 lines
444 B
Kotlin
28 lines
444 B
Kotlin
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
kotlin("jvm") version "1.4.32"
|
|
}
|
|
|
|
group = "de.wulkanat"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://jitpack.io")
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.github.HMCore:Core:main-SNAPSHOT")
|
|
|
|
testImplementation(kotlin("test-junit"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnit()
|
|
}
|
|
|
|
tasks.withType<KotlinCompile> {
|
|
kotlinOptions.jvmTarget = "11"
|
|
}
|