Create working example of external module

This commit is contained in:
2020-03-09 21:12:15 +01:00
parent dcdecee28f
commit 8ca966b376
9 changed files with 113 additions and 29 deletions

View File

@@ -1,25 +0,0 @@
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm'
}
group 'io.bartek'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}