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
29 lines (23 loc) · 709 Bytes
/
build.gradle
File metadata and controls
29 lines (23 loc) · 709 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
description = 'Allure Java Migration'
apply from: "${gradleScriptDir}/maven-publish.gradle"
apply from: "${gradleScriptDir}/bintray.gradle"
apply plugin: 'maven'
apply plugin: 'java'
configurations {
agent
}
dependencies {
agent('org.aspectj:aspectjweaver')
compile project(':allure-java-commons')
compile('org.aspectj:aspectjrt')
compileOnly('junit:junit')
compileOnly('org.testng:testng')
testCompile project(':allure-java-commons-test')
testCompile('junit:junit')
testCompile('org.assertj:assertj-core')
testCompile('org.mockito:mockito-core')
testCompile('org.testng:testng')
}
test.doFirst {
jvmArgs "-javaagent:${configurations.agent.singleFile}"
}