Repository: groovy Updated Branches: refs/heads/GROOVY_2_5_X c6af1b318 -> 67e513926
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/67e51392 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/67e51392 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/67e51392 Branch: refs/heads/GROOVY_2_5_X Commit: 67e513926a549cd96e2bc11090f469d26528ec4b Parents: c6af1b3 Author: Paul King <[email protected]> Authored: Wed Sep 5 11:25:11 2018 +1000 Committer: Paul King <[email protected]> Committed: Wed Sep 5 12:54:57 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/67e51392/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') }
