Add tests for configuring kotlin with gradle 4.9

This commit is contained in:
Natalia Selezneva
2018-08-10 16:34:37 +03:00
parent 81b519286f
commit 81f4bd3846
52 changed files with 506 additions and 11 deletions
@@ -0,0 +1,6 @@
group = "testgroup"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
@@ -0,0 +1,12 @@
plugins {
id("kotlin2js") version "1.2.40"
}
group = "testgroup"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
compile(kotlin("stdlib-js"))
}
@@ -0,0 +1 @@
include ':app'