Suppress compiler warnings in experimental. They are still expected to be fixed in the other modules.

This commit is contained in:
Mike Hearn 2016-06-27 14:55:55 +02:00
parent 10b17d6862
commit 848b998d26

View File

@ -10,6 +10,13 @@ repositories {
mavenCentral()
}
compileKotlin {
kotlinOptions.suppressWarnings = true
}
compileTestKotlin {
kotlinOptions.suppressWarnings = true
}
dependencies {
compile project(':core')
compile project(':contracts')