forked from allure-framework/allure-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (27 loc) · 874 Bytes
/
build.gradle
File metadata and controls
36 lines (27 loc) · 874 Bytes
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
description = 'Allure AssertJ'
apply from: "${gradleScriptDir}/maven-publish.gradle"
apply from: "${gradleScriptDir}/bintray.gradle"
apply plugin: 'maven'
configurations {
agent
}
dependencies {
agent('org.aspectj:aspectjweaver')
compile project(':allure-java-commons')
compile('org.assertj:assertj-core')
testCompile('org.slf4j:slf4j-simple')
testCompile('org.junit.jupiter:junit-jupiter-api')
testRuntime('org.junit.jupiter:junit-jupiter-engine')
testCompile project(':allure-junit-platform')
testCompile project(':allure-java-commons-test')
}
test {
systemProperty 'org.slf4j.simpleLogger.defaultLogLevel', 'debug'
systemProperty 'allure.model.indentOutput', true
useJUnitPlatform {
includeEngines 'junit-jupiter'
}
doFirst {
jvmArgs "-javaagent:${configurations.agent.singleFile}"
}
}