From 3b121f920bf583104d1b7c58472fa44295f5c1c8 Mon Sep 17 00:00:00 2001 From: Vasily Levchenko Date: Thu, 22 Sep 2016 13:41:08 +0300 Subject: [PATCH] added interop integration to translator-bc --- experiments/settings.gradle | 1 + experiments/translator-bc/build.gradle | 5 +++-- experiments/translator-bc/settings.gradle | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) 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'