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
30 lines (24 loc) · 769 Bytes
/
build.gradle
File metadata and controls
30 lines (24 loc) · 769 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
description = 'Allure Java Commons'
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('io.qameta.allure:allure2-model-api')
compile('org.slf4j:slf4j-api')
compile('org.aspectj:aspectjrt')
compile('org.jooq:joor-java-8')
compile('org.apache.commons:commons-lang3')
testCompile('junit:junit')
testCompile('org.slf4j:slf4j-simple')
testCompile('org.mockito:mockito-core')
testCompile('org.assertj:assertj-core')
testCompile project(':allure-java-commons-test')
}
test.doFirst {
jvmArgs "-javaagent:${configurations.agent.singleFile}"
}