summaryrefslogtreecommitdiff
path: root/sw-client/build.gradle.kts
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2019-05-31 20:19:34 +0200
committerjbion <joffrey.bion@amadeus.com>2019-07-08 19:21:15 +0200
commitc3fc62e7117b2e970eea4eb84137b6624063fb6d (patch)
treebd9a29c611f78227519729e54ec18b7ac530740e /sw-client/build.gradle.kts
parentRemove useless Travis CI config (diff)
downloadseven-wonders-c3fc62e7117b2e970eea4eb84137b6624063fb6d.tar.gz
seven-wonders-c3fc62e7117b2e970eea4eb84137b6624063fb6d.tar.bz2
seven-wonders-c3fc62e7117b2e970eea4eb84137b6624063fb6d.zip
Create multiplatform SevenWondersClient based on Krossbow
Diffstat (limited to 'sw-client/build.gradle.kts')
-rw-r--r--sw-client/build.gradle.kts49
1 files changed, 49 insertions, 0 deletions
diff --git a/sw-client/build.gradle.kts b/sw-client/build.gradle.kts
new file mode 100644
index 00000000..35cebd82
--- /dev/null
+++ b/sw-client/build.gradle.kts
@@ -0,0 +1,49 @@
+plugins {
+ kotlin("multiplatform")
+ id("org.jlleitschuh.gradle.ktlint")
+}
+
+val krossbowVersion = "0.3.1"
+
+kotlin {
+ jvm()
+ js()
+ sourceSets {
+ val commonMain by getting {
+ dependencies {
+ api(project(":sw-common-model"))
+ implementation(kotlin("stdlib-common"))
+ implementation("org.hildan.krossbow:krossbow-client-metadata:$krossbowVersion")
+ }
+ }
+ val commonTest by getting {
+ dependencies {
+ implementation(kotlin("test-common"))
+ implementation(kotlin("test-annotations-common"))
+ }
+ }
+ val jvmMain by getting {
+ dependencies {
+ implementation(kotlin("stdlib-jdk8"))
+ implementation("org.hildan.krossbow:krossbow-client-jvm:$krossbowVersion")
+ }
+ }
+ val jvmTest by getting {
+ dependencies {
+ implementation(kotlin("test"))
+ implementation(kotlin("test-junit"))
+ }
+ }
+ val jsMain by getting {
+ dependencies {
+ implementation(kotlin("stdlib-js"))
+ implementation("org.hildan.krossbow:krossbow-client-js:$krossbowVersion")
+ }
+ }
+ val jsTest by getting {
+ dependencies {
+ implementation(kotlin("test-js"))
+ }
+ }
+ }
+}
bgstack15