diff --git a/experiments/settings.gradle b/experiments/settings.gradle index 8647f551837..5e12915e26a 100644 --- a/experiments/settings.gradle +++ b/experiments/settings.gradle @@ -2,3 +2,4 @@ include ':Interop:Indexer' include ':Interop:StubGenerator' include ':Interop:Runtime' include ':InteropExample' +include ':translator-bc' diff --git a/experiments/translator-bc/build.gradle b/experiments/translator-bc/build.gradle index 71b194df7fc..e266740d577 100644 --- a/experiments/translator-bc/build.gradle +++ b/experiments/translator-bc/build.gradle @@ -1,4 +1,4 @@ -group 'translator' +group 'translator-bc' version '1.0' buildscript { @@ -8,13 +8,14 @@ buildscript { mavenCentral() } dependencies { - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.0.2" + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } apply plugin: 'java' apply plugin: 'kotlin' apply plugin: 'application' +apply plugin: org.jetbrains.kotlin.NativeInteropPlugin repositories { mavenCentral() diff --git a/experiments/translator-bc/settings.gradle b/experiments/translator-bc/settings.gradle index 4636f58628e..fdff6ac2025 100644 --- a/experiments/translator-bc/settings.gradle +++ b/experiments/translator-bc/settings.gradle @@ -1,2 +1,2 @@ -rootProject.name = 'translator' +rootProject.name = 'translator-bc'