Skip to content

Commit

Permalink
Suppress unstable API usage warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisCAD committed Oct 5, 2019
1 parent 34b20d2 commit ce9373c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ gradlePlugin {
plugins {
create("com.louiscad.splitties") {
id = "com.louiscad.splitties"
@Suppress("UnstableApiUsage")
displayName = "Splitties"
@Suppress("UnstableApiUsage")
description = "A family of small Kotlin libraries for delightful Android development\n"
implementationClass = "com.louiscad.splitties.SplittiesPlugin"
}
Expand Down Expand Up @@ -63,6 +65,7 @@ tasks.withType<KotlinCompile> {
}

tasks.withType<Test>().configureEach {
@Suppress("UnstableApiUsage")
useJUnitPlatform()
}

Expand All @@ -73,4 +76,4 @@ java {

kotlinDslPluginOptions {
experimentalWarning.set(false)
}
}

0 comments on commit ce9373c

Please sign in to comment.