Repository: groovy Updated Branches: refs/heads/master ab9c39dac -> a7ebe87b8
GROOVY-8773: Bump JUnit 5 to 5.3 Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/a7ebe87b Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/a7ebe87b Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/a7ebe87b Branch: refs/heads/master Commit: a7ebe87b8cb4ff7ce220a13af96788118d316006 Parents: ab9c39d Author: Paul King <[email protected]> Authored: Wed Sep 5 11:25:11 2018 +1000 Committer: Paul King <[email protected]> Committed: Wed Sep 5 11:25:11 2018 +1000 ---------------------------------------------------------------------- subprojects/groovy-test-junit5/build.gradle | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/a7ebe87b/subprojects/groovy-test-junit5/build.gradle ---------------------------------------------------------------------- diff --git a/subprojects/groovy-test-junit5/build.gradle b/subprojects/groovy-test-junit5/build.gradle index 1accebc..d1f68a4 100644 --- a/subprojects/groovy-test-junit5/build.gradle +++ b/subprojects/groovy-test-junit5/build.gradle @@ -16,13 +16,17 @@ * specific language governing permissions and limitations * under the License. */ +ext { + junit5Version = '5.3.0' +} + dependencies { compile rootProject compile 'org.junit.platform:junit-platform-launcher:1.2.0' - runtime 'org.junit.jupiter:junit-jupiter-engine:5.2.0' - testCompile 'org.junit.jupiter:junit-jupiter-params:5.2.0' + runtime "org.junit.jupiter:junit-jupiter-engine:$junit5Version" + testCompile "org.junit.jupiter:junit-jupiter-params:$junit5Version" testRuntime 'org.junit.platform:junit-platform-runner:1.2.0' - testRuntime 'org.junit.vintage:junit-vintage-engine:5.2.0' + testRuntime "org.junit.vintage:junit-vintage-engine:$junit5Version" testCompile project(':groovy-test') }
