Update plugin com.github.triplet.play to v3

This commit is contained in:
RenovateBot 2021-09-08 13:04:59 +00:00 committed by Ryan Harg
parent da41874b66
commit 650d73dcb6
1 changed files with 6 additions and 6 deletions

View File

@ -8,7 +8,7 @@ plugins {
id("org.jlleitschuh.gradle.ktlint") version "10.1.0" id("org.jlleitschuh.gradle.ktlint") version "10.1.0"
id("com.gladed.androidgitversion") version "0.4.14" id("com.gladed.androidgitversion") version "0.4.14"
id("com.github.triplet.play") version "2.8.1" id("com.github.triplet.play") version "3.6.0"
id("de.mobilej.unmock") id("de.mobilej.unmock")
id("com.github.ben-manes.versions") id("com.github.ben-manes.versions")
jacoco jacoco
@ -141,12 +141,12 @@ ktlint {
} }
play { play {
isEnabled = props.hasProperty("play.credentials") enabled.set(props.hasProperty("play.credentials"))
if (isEnabled) { if (enabled.get()) {
serviceAccountCredentials = file(props.getProperty("play.credentials")) serviceAccountCredentials.set(file(props.getProperty("play.credentials")))
defaultToAppBundles = true defaultToAppBundles.set(true)
track = "beta" track.set("beta")
} }
} }