archetype-resources.build.gradle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of serenity-cucumber-archetype
Show all versions of serenity-cucumber-archetype
Serenity automated acceptance testing project using Selenium 2, JUnit and Cucumber-JVM
repositories {
jcenter()
mavenLocal()
}
buildscript {
repositories {
mavenLocal()
jcenter()
}
dependencies {
classpath("net.serenity-bdd:serenity-gradle-plugin:2.0.66")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'net.serenity-bdd.aggregator'
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile 'net.serenity-bdd:serenity-core:2.0.66'
compile 'net.serenity-bdd:serenity-cucumber:1.9.45'
testCompile('junit:junit:4.12')
compile('org.assertj:assertj-core:3.8.0')
}
gradle.startParameter.continueOnFailure = true
© 2015 - 2024 Weber Informatics LLC | Privacy Policy