The gradle.property contains the version of the kotlin kotlin_version, previously it was used for holding llvmInstallPath, now this variable should be defined in local.property
This commit is contained in:
Vasily Levchenko
2016-09-28 16:08:44 +03:00
parent c6cf10b1e8
commit 89d6c24f56
6 changed files with 6 additions and 8 deletions
+1
View File
@@ -8,6 +8,7 @@ tmp
workspace.xml
*.versionsBackup
local.properties
.gradle
build
translator/.gradle/2.9/taskArtifacts
-2
View File
@@ -1,6 +1,4 @@
buildscript {
ext.kotlin_version = '1.0.3'
repositories {
mavenCentral()
}
-2
View File
@@ -1,6 +1,4 @@
buildscript {
ext.kotlin_version = '1.0.3'
repositories {
mavenCentral()
}
-2
View File
@@ -1,6 +1,4 @@
buildscript {
ext.kotlin_version = '1.0.3'
repositories {
mavenCentral()
}
+5 -1
View File
@@ -1 +1,5 @@
ant.importBuild 'kotlin-ir/build.xml'
ant.importBuild 'backend.native/kotlin-ir/build.xml'
Properties props = new Properties()
props.load(new FileInputStream("$project.rootDir/local.properties"))
props.each {prop -> project.ext.set(prop.key, prop.value)}
-1
View File
@@ -3,4 +3,3 @@ include ':Interop:StubGenerator'
include ':Interop:Runtime'
include ':InteropExample'
include ':backend.native'
include ':backend.native:cli.bc'