Init
This commit is contained in:
commit
dac2038174
|
@ -0,0 +1,12 @@
|
|||
### IntelliJ IDEA ###
|
||||
.idea
|
||||
*.iws
|
||||
*.iml
|
||||
*.ipr
|
||||
|
||||
.gradle/
|
||||
gradle/
|
||||
gradlew*
|
||||
build/
|
||||
logs/
|
||||
dokka/
|
|
@ -0,0 +1,28 @@
|
|||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||
|
||||
plugins {
|
||||
kotlin("jvm") version "1.4.30"
|
||||
}
|
||||
|
||||
group = "dev.fyloz.colorrecipesexplorer"
|
||||
version = "1.0"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("org.liquibase:liquibase-core:4.3.1")
|
||||
|
||||
testImplementation(kotlin("test-junit5"))
|
||||
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0")
|
||||
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.6.0")
|
||||
}
|
||||
|
||||
tasks.test {
|
||||
useJUnitPlatform()
|
||||
}
|
||||
|
||||
tasks.withType<KotlinCompile>() {
|
||||
kotlinOptions.jvmTarget = "11"
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
kotlin.code.style=official
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
rootProject.name = "DatabaseUpdater"
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
package dev.fyloz.colorrecipesexplorer.databaseupdater
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue