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
31 lines (23 loc) · 703 Bytes
/
build.gradle
File metadata and controls
31 lines (23 loc) · 703 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
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 'junit:junit'
testCompile 'org.testng:testng'
testCompile 'org.mockito:mockito-core'
testCompile 'org.assertj:assertj-core'
testCompile project(':allure-java-commons-test')
}
test.doFirst {
jvmArgs "-javaagent:${configurations.agent.singleFile}"
}