Prepare gradle config for building libs - bootstrap and runtime

Use external gradle plugin (1.1-M04) with compiler.jar from dist
Add empty build scripts for other projects that needs to be built with gradle
This commit is contained in:
Ilya Chernikov
2016-12-29 17:41:22 +01:00
committed by Ilya Gorbunov
parent 8e3453f0eb
commit c2c051cfe8
10 changed files with 206 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
description = ''
dependencies {
compile project(':kotlin-runtime')
testCompile project(':kotlin-test-parent:kotlin-test-junit')
}
+2
View File
@@ -0,0 +1,2 @@
description = ''
+6
View File
@@ -0,0 +1,6 @@
description = ''
dependencies {
compile project(':kotlin-stdlib')
testCompile project(':kotlin-test-parent:kotlin-test-junit')
}
+6
View File
@@ -0,0 +1,6 @@
description = ''
dependencies {
compile project(':kotlin-stdlib-jre7')
testCompile project(':kotlin-test-parent:kotlin-test-junit')
}