30 lines
618 B
Groovy
30 lines
618 B
Groovy
repositories {
|
|
jcenter()
|
|
mavenLocal()
|
|
}
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenLocal()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath("net.serenity-bdd:serenity-gradle-plugin:2.3.2")
|
|
}
|
|
}
|
|
|
|
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.3.2'
|
|
compile 'net.serenity-bdd:serenity-junit:2.3.2'
|
|
testCompile('junit:junit:4.12')
|
|
}
|
|
gradle.startParameter.continueOnFailure = true
|