Merge pull request #9744 from nextcloud/dependabot/gradle/com.karumi-shot-5.13.0

Bump shot from 5.11.2 to 5.13.0
This commit is contained in:
Álvaro Brey 2022-01-26 10:44:25 +01:00 committed by GitHub
commit 41b3921643
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -25,7 +25,7 @@ buildscript {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.19.0" classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.19.0"
classpath "commons-httpclient:commons-httpclient:3.1@jar" // remove after entire switch to lib v2 classpath "commons-httpclient:commons-httpclient:3.1@jar" // remove after entire switch to lib v2
classpath 'com.karumi:shot:5.11.2' classpath 'com.karumi:shot:5.13.0'
classpath "org.jacoco:org.jacoco.core:$jacoco_version" classpath "org.jacoco:org.jacoco.core:$jacoco_version"
classpath "org.jacoco:org.jacoco.report:$jacoco_version" classpath "org.jacoco:org.jacoco.report:$jacoco_version"
classpath "org.jacoco:org.jacoco.agent:$jacoco_version" classpath "org.jacoco:org.jacoco.agent:$jacoco_version"

View file

@ -67,7 +67,7 @@ if [ $TYPE = "IT" ]; then
elif [ $TYPE = "Unit" ]; then elif [ $TYPE = "Unit" ]; then
FOLDER=build/reports/tests/testGplayDebugUnitTest FOLDER=build/reports/tests/testGplayDebugUnitTest
else else
FOLDER=build/reports/shot/verification FOLDER=build/reports/shot/gplay/debug/verification
fi fi
if [ -e $FOLDER ]; then if [ -e $FOLDER ]; then
@ -92,10 +92,10 @@ else
upload "build/reports/tests/testGplayDebugUnitTest" upload "build/reports/tests/testGplayDebugUnitTest"
fi fi
if [ -e build/reports/shot/verification ] ; then if [ -e build/reports/shot/gplay/debug/verification ] ; then
TYPE="Screenshot" TYPE="Screenshot"
BRANCH_TYPE=$BRANCH-$TYPE BRANCH_TYPE=$BRANCH-$TYPE
upload "build/reports/shot/verification" upload "build/reports/shot/gplay/debug/verification"
fi fi
exit 1 # always fail exit 1 # always fail