Skip to content

Commit 7afb5c8

Browse files
committed
Add gradle wrapper task
Allow the gradle build to explicitly define which version of gradle we are using, which also provides a formal way for bumping the verion of the gradle wrapper being used by the project.
1 parent a0895cc commit 7afb5c8

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,3 +91,8 @@ project(':ds3-cli-certification') {
9191
testCompile project(path: ':ds3-cli-helpers', configuration: 'testOutput')
9292
}
9393
}
94+
95+
wrapper {
96+
// to upgrade the gradle wrapper, bump the version below and run ./gradlew wrapper
97+
gradleVersion = '6.0.1'
98+
}

0 commit comments

Comments
 (0)