HEAD UP!
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:
@@ -8,6 +8,7 @@ tmp
|
|||||||
workspace.xml
|
workspace.xml
|
||||||
*.versionsBackup
|
*.versionsBackup
|
||||||
|
|
||||||
|
local.properties
|
||||||
.gradle
|
.gradle
|
||||||
build
|
build
|
||||||
translator/.gradle/2.9/taskArtifacts
|
translator/.gradle/2.9/taskArtifacts
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.0.3'
|
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.0.3'
|
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.0.3'
|
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|||||||
+5
-1
@@ -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)}
|
||||||
@@ -3,4 +3,3 @@ include ':Interop:StubGenerator'
|
|||||||
include ':Interop:Runtime'
|
include ':Interop:Runtime'
|
||||||
include ':InteropExample'
|
include ':InteropExample'
|
||||||
include ':backend.native'
|
include ':backend.native'
|
||||||
include ':backend.native:cli.bc'
|
|
||||||
|
|||||||
Reference in New Issue
Block a user