initial script and publish action

This commit is contained in:
Gergely Hegedus 2022-08-25 19:02:00 +03:00
parent a1f1eca3f6
commit e478a4c836
70 changed files with 2602 additions and 0 deletions

31
main/build.gradle.kts Normal file
View file

@ -0,0 +1,31 @@
plugins {
id("org.jetbrains.kotlin.jvm")
id("application")
}
application {
mainClass.set("org.fnives.android.test.dockerfile.Main")
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks.test {
useJUnitPlatform()
testLogging {
setEvents(setOf("started", "passed", "skipped", "failed"))
setExceptionFormat("full")
showStandardStreams = true
}
}
dependencies {
val tomlParserVersion = "1.1.0"
implementation("cc.ekblad:4koma:$tomlParserVersion")
val testingJunitJupiterVersion = "5.7.0"
val testingJunitJupiterRuntimeVersion = "5.3.1"
testImplementation("org.junit.jupiter:junit-jupiter-engine:$testingJunitJupiterVersion")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$testingJunitJupiterRuntimeVersion")
}