-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
31 lines (30 loc) · 1.01 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
jcenter()
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath("net.serenity-bdd:serenity-gradle-plugin:1.9.45")
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'net.serenity-bdd.aggregator'
dependencies {
testImplementation'net.serenity-bdd:serenity-core:1.9.9'
testImplementation 'net.serenity-bdd:serenity-junit:1.1.1'
testImplementation('junit:junit:4.12')
testImplementation('org.assertj:assertj-core:1.7.0')
testImplementation('org.slf4j:slf4j-simple:1.7.7')
implementation 'net.serenity-bdd:serenity-core:1.9.9'
implementation 'net.serenity-bdd:serenity-junit:1.9.9'
implementation 'net.serenity-bdd:serenity-cucumber:1.9.5'
implementation (group:'net.serenity-bdd', name:'serenity-screenplay-webdriver', version:'2.0.80')
implementation (group: 'edu.princeton.cs', name: 'algs4', version: '1.0.2')
}
gradle.startParameter.continueOnFailure = true