Bug 1457863 - 1. Update kotlin to 1.2.41; r=nalexander

Update the kotlin version used for GeckoView tests to 1.2.41. Also turn
on "warnings-as-errors", which is a compiler option introduced in kotlin
1.2.

MozReview-Commit-ID: 7cL2v4jFJ27

--HG--
extra : rebase_source : daf3c2f3ca24304faa10c399c4ef2bd145395ada
This commit is contained in:
Jim Chen 2018-05-02 13:49:57 -04:00
Родитель 314ab031ee
Коммит 652208262f
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -50,7 +50,7 @@ buildscript {
}
}
ext.kotlin_version = '1.1.51'
ext.kotlin_version = '1.2.41'
ext.support_library_version = '23.4.0'
if (gradle.mozconfig.substs.MOZ_ANDROID_GOOGLE_PLAY_SERVICES) {

Просмотреть файл

@ -174,6 +174,10 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile) {
}
} as StandardOutputListener
kotlinOptions {
allWarningsAsErrors = true
}
doFirst {
logging.addStandardErrorListener(listener)
}