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 (25 loc) · 789 Bytes
/
build.gradle
File metadata and controls
31 lines (25 loc) · 789 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 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 'com.google.guava:guava'
compile 'org.jooq:joor'
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}"
}