From ffaf36c8197a57d99d8feac8e3e246b5210a2683 Mon Sep 17 00:00:00 2001 From: Bill Smith Date: Mon, 8 Jul 2019 15:33:33 -0700 Subject: [PATCH] SHIBUI-1281 Attempts at altering the build so that the integration tests don't pull in things they don't need. --- backend/build.gradle | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/backend/build.gradle b/backend/build.gradle index 9180c519a..536868e08 100644 --- a/backend/build.gradle +++ b/backend/build.gradle @@ -37,11 +37,11 @@ configurations.all { configurations { integrationTestCompile { - extendsFrom testCompile + extendsFrom compile } integrationTestRuntime { - extendsFrom testRuntime + extendsFrom runtime } } @@ -195,6 +195,10 @@ dependencies { integrationTestCompile 'com.saucelabs:sebuilder-interpreter:1.0.6' integrationTestCompile 'jp.vmi:selenese-runner-java:3.20.0' + integrationTestCompile "org.springframework.boot:spring-boot-starter-test" + integrationTestCompile "org.springframework.security:spring-security-test" + integrationTestCompile "org.spockframework:spock-core:1.1-groovy-2.4" + integrationTestCompile "org.spockframework:spock-spring:1.1-groovy-2.4" // CSV file support compile 'com.opencsv:opencsv:4.4'