summaryrefslogtreecommitdiff
path: root/sw-ui/build.gradle
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-ui/build.gradle
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-ui/build.gradle')
-rw-r--r--sw-ui/build.gradle11
1 files changed, 11 insertions, 0 deletions
diff --git a/sw-ui/build.gradle b/sw-ui/build.gradle
index 61f01053..201cd6a1 100644
--- a/sw-ui/build.gradle
+++ b/sw-ui/build.gradle
@@ -4,6 +4,17 @@ plugins {
apply plugin: 'base'
+// Fix for "Could not find org.nodejs:node:10.15.3"
+// Gradle node plugin + Gradle metadata seems to need this fix
+// https://github.com/JetBrains/kotlin-native/issues/1612
+repositories.whenObjectAdded {
+ if (it instanceof IvyArtifactRepository) {
+ metadataSources {
+ artifact()
+ }
+ }
+}
+
buildDir = 'build'
node {
bgstack15