From 4a6021fbc36b1be5452c7346a8214f41da5bbd29 Mon Sep 17 00:00:00 2001 From: David Turanski Date: Sat, 23 Feb 2013 11:03:18 -0500 Subject: [PATCH] SGF-155 - fixed build script --- build.gradle | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 3892cca3..d0eab608 100644 --- a/build.gradle +++ b/build.gradle @@ -52,15 +52,16 @@ dependencies { runtime("antlr:antlr:2.7.7") runtime("commons-modeler:commons-modeler:2.0.1") - //Test Framework - compile "org.mockito:mockito-core:$mockitoVersion" - compile "org.springframework:spring-test:$springVersion" - compile "junit:junit-dep:$junitVersion" + + // Testing + testCompile "org.mockito:mockito-core:$mockitoVersion" + testCompile "org.springframework:spring-test:$springVersion" + testCompile "junit:junit-dep:$junitVersion" testCompile "org.hamcrest:hamcrest-core:$hamcrestVersion" testCompile "org.hamcrest:hamcrest-library:$hamcrestVersion" - testCompile("javax.annotation:jsr250-api:1.0", optional) + testCompile "javax.annotation:jsr250-api:1.0", optional // Spring Data compile "org.springframework.data:spring-data-commons:${springDataCommonsVersion}"