Skip to content

Commit

Permalink
SHIBUI-1281
Browse files Browse the repository at this point in the history
Attempts at altering the build so that the integration tests don't pull
in things they don't need.
  • Loading branch information
Bill Smith committed Jul 8, 2019
1 parent 7bd2188 commit ffaf36c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ configurations.all {

configurations {
integrationTestCompile {
extendsFrom testCompile
extendsFrom compile

}
integrationTestRuntime {
extendsFrom testRuntime
extendsFrom runtime
}
}

Expand Down Expand Up @@ -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'
Expand Down

0 comments on commit ffaf36c

Please sign in to comment.