Files
HMCore/build.gradle
dependabot[bot] 0914f86ef6 Bump org.jetbrains.kotlin.jvm from 1.4.32 to 1.5.0
Bumps org.jetbrains.kotlin.jvm from 1.4.32 to 1.5.0.

Signed-off-by: dependabot[bot] <support@github.com>
2021-04-27 08:00:48 +00:00

28 lines
552 B
Groovy

plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.5.0'
}
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"
implementation 'com.google.code.gson:gson:2.8.6'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}
test {
useJUnitPlatform()
}