forked from reportportal/client-java-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
32 lines (27 loc) · 799 Bytes
/
build.gradle
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
plugins {
id 'net.researchgate.release' version '2.4.1'
id "com.jfrog.bintray" version "1.7"
}
apply plugin: 'java'
apply from: 'release.gradle'
sourceCompatibility = 1.6
targetCompatibility = 1.6
description = 'EPAM Report portal. Client'
repositories {
jcenter()
maven { url "http://dl.bintray.com/epam/reportportal" }
}
dependencies {
compile 'com.epam.reportportal:commons-model:2.6.0'
compile 'com.google.guava:guava:18.0'
compile 'com.epam.reportportal:rest-client-core:1.0.3'
compile 'com.google.inject:guice:3.0'
compile 'org.apache.tika:tika-core:1.4'
compile 'org.slf4j:slf4j-api:1.7.2'
testCompile 'junit:junit:4.12'
compileOnly('info.cukes:gherkin:2.12.2')
}
test.useTestNG()
task wrapper(type: Wrapper) {
gradleVersion = '3.0'
}