Skip to content

Instantly share code, notes, and snippets.

@chbatey
Last active August 29, 2015 14:15
Show Gist options
  • Save chbatey/69fd3687103d0fc36811 to your computer and use it in GitHub Desktop.
Save chbatey/69fd3687103d0fc36811 to your computer and use it in GitHub Desktop.
Cucumber dependencies
dependencies {
// cucumber tests
testCompile("org.springframework.boot:spring-boot-starter-test")
testCompile("info.cukes:cucumber-junit:${cucumberVersion}")
testCompile("info.cukes:cucumber-spring:${cucumberVersion}")
// for performance testing
testCompile "org.scala-lang:scala-library:2.11.5"
testCompile "io.gatling:gatling-app:${gatlingVersion}"
testCompile "io.gatling.highcharts:gatling-charts-highcharts:${gatlingVersion}"
// helper libs
testCompile("org.apache.httpcomponents:httpclient:${apacheHttpVersion}")
testCompile("org.apache.httpcomponents:fluent-hc:${apacheHttpVersion}")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment