-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle
63 lines (53 loc) · 1.68 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
defaultTasks 'clean','test','aggregate'
repositories {
mavenLocal()
jcenter()
}
buildscript {
repositories {
mavenLocal()
jcenter()
}
dependencies {
classpath("net.serenity-bdd:serenity-gradle-plugin:2.0.76")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'net.serenity-bdd.aggregator'
apply from: "$rootDir/gradle/libraries.gradle"
sourceCompatibility = 1.8
targetCompatibility = 1.8
/**
* This is needed to make sure there are no Cucumber 2 dependencies in the classpath.
*/
configurations.all {
resolutionStrategy {
force "io.cucumber:cucumber-core:${cucumberVersion}"
}
}
dependencies {
compile libs.logback
compileOnly 'org.projectlombok:lombok:1.18.10'
annotationProcessor 'org.projectlombok:lombok:1.18.10'
compile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.9.9'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.9.9'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.9'
compile group: 'com.github.javafaker', name: 'javafaker', version: '0.15'
testCompile libs.test.cucumber.java,
libs.test.cucumber.junit,
libs.test.serenity.core,
libs.test.serenity.screenplay,
libs.test.serenity.junit,
libs.test.serenity.screenplayWebdriver,
libs.test.serenity.cucumber,
libs.test.junit,
libs.test.assertj
}
test {
testLogging.showStandardStreams = true
systemProperties System.getProperties()
}
gradle.startParameter.continueOnFailure = true
test.finalizedBy(aggregate)