Skip to content

Commit

Permalink
androidStudioが自動でkotlin用の設定を入れたやつ+ビルドこけたとこだけ一旦コメントアウト
Browse files Browse the repository at this point in the history
  • Loading branch information
sasasaiki committed Sep 7, 2018
1 parent 1d2467f commit cba1cc5
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions generator/build.gradle
@@ -1,8 +1,25 @@
//plugins {
// id 'org.jetbrains.kotlin.jvm' version '1.2.61'
//}
apply plugin: 'kotlin'

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
}

sourceCompatibility = "7"
targetCompatibility = "7"
repositories {
mavenCentral()
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}

0 comments on commit cba1cc5

Please sign in to comment.