From 0e0bf1d699ae4fef0748afe8b8b4dd68726b7ab2 Mon Sep 17 00:00:00 2001 From: Drummond Dawson Date: Tue, 14 Aug 2018 22:31:01 -0400 Subject: [PATCH] BATCH-2702: testCompile hamcrest in test module --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 7a9affbdd..3d41ce6af 100644 --- a/build.gradle +++ b/build.gradle @@ -506,12 +506,12 @@ project('spring-batch-test') { compile project(":spring-batch-core") compile "junit:junit:${junitVersion}" - compile "org.hamcrest:hamcrest-library:$hamcrestVersion" compile "org.springframework:spring-test:$springVersion" compile "org.springframework:spring-jdbc:$springVersion" compile "commons-collections:commons-collections:$commonsCollectionsVersion" - testCompile "org.apache.commons:commons-dbcp2:$commonsDdbcpVersion" + testCompile "org.hamcrest:hamcrest-library:$hamcrestVersion" + testCompile "org.apache.commons:commons-dbcp2:$commonsDdbcpVersion" testCompile "org.hsqldb:hsqldb:$hsqldbVersion" testCompile "org.mockito:mockito-core:$mockitoVersion"