Skip to content

Instantly share code, notes, and snippets.

@samuelloza
Created November 17, 2020 19:17
Show Gist options
  • Save samuelloza/657069610ddb2302784c68e05a399713 to your computer and use it in GitHub Desktop.
Save samuelloza/657069610ddb2302784c68e05a399713 to your computer and use it in GitHub Desktop.
gradle cucumber-picocontaine
plugins {
id 'java'
id 'application'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.guava:guava:29.0-jre'
testCompile group: 'io.cucumber', name: 'cucumber-java', version: '2.4.0'
testCompile group: 'io.cucumber', name: 'cucumber-testng', version: '2.4.0'
testCompile group: 'io.cucumber', name: 'cucumber-picocontainer', version: '2.4.0'
}
application {
mainClassName = 'example.cucumber.picocontainer.App'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment