diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2019-05-16 23:48:38 +0200 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2019-05-16 23:48:38 +0200 |
commit | 2382a452456e4bdef4584e1046925e372624cb79 (patch) | |
tree | 0e49b2e5d81facb55fb8b08228abeb218a27d466 /sw-engine/build.gradle.kts | |
parent | Remove GRADLE_METADATA feature to avoid breaking frontend build (diff) | |
download | seven-wonders-2382a452456e4bdef4584e1046925e372624cb79.tar.gz seven-wonders-2382a452456e4bdef4584e1046925e372624cb79.tar.bz2 seven-wonders-2382a452456e4bdef4584e1046925e372624cb79.zip |
Rationalize module names
Diffstat (limited to 'sw-engine/build.gradle.kts')
-rw-r--r-- | sw-engine/build.gradle.kts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sw-engine/build.gradle.kts b/sw-engine/build.gradle.kts new file mode 100644 index 00000000..e85d396f --- /dev/null +++ b/sw-engine/build.gradle.kts @@ -0,0 +1,16 @@ +plugins { + id("org.jetbrains.kotlin.jvm") + id("org.jlleitschuh.gradle.ktlint") version "7.1.0" +} + +dependencies { + implementation(project(":sw-common-model")) + implementation(kotlin("stdlib-jdk8")) + implementation("com.github.salomonbrys.kotson:kotson:2.5.0") + testImplementation(kotlin("test")) + testImplementation(kotlin("test-junit")) +} + +tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> { + kotlinOptions.jvmTarget = "1.8" +} |