initial commit
This commit is contained in:
29
build.gradle.kts
Normal file
29
build.gradle.kts
Normal file
@@ -0,0 +1,29 @@
|
||||
|
||||
plugins {
|
||||
kotlin("jvm") version "1.3.41"
|
||||
}
|
||||
|
||||
group = "woggioni.net"
|
||||
version = "0.1"
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
mavenCentral()
|
||||
jcenter()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(kotlin("stdlib-jdk8"))
|
||||
compile("net.woggioni:jwo:1.0")
|
||||
testImplementation ("junit:junit:4.12")
|
||||
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:1.3.41")
|
||||
testImplementation("org.apache.logging.log4j:log4j-core:2.12.1")
|
||||
testImplementation("org.apache.logging.log4j:log4j-slf4j-impl:2.12.1")
|
||||
}
|
||||
|
||||
java {
|
||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
targetCompatibility = JavaVersion.VERSION_1_8
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user