Files
HMCore/build.gradle
2021-04-11 22:45:36 +02:00

26 lines
499 B
Groovy

plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.4.32'
}
group 'org.hmcore'
version '1.0-SNAPSHOT'
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}
test {
useJUnitPlatform()
}