Skip to content
Snippets Groups Projects
Commit 1b6a2464 authored by Ryan Harg's avatar Ryan Harg
Browse files

Merge branch 'renovate/com.github.triplet.play-3.x' into 'develop'

Update plugin com.github.triplet.play to v3

See merge request !98
parents da41874b 650d73dc
Branches
Tags
1 merge request!98Update plugin com.github.triplet.play to v3
Pipeline #16331 passed
...@@ -8,7 +8,7 @@ plugins { ...@@ -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 { ...@@ -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")
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment