-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (27 loc) · 882 Bytes
/
build.gradle
File metadata and controls
35 lines (27 loc) · 882 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
32
33
34
35
group 'functional.tests.core'
version '0.0.5'
apply plugin: 'java'
apply plugin: 'checkstyle'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'io.appium', name: 'java-client', version: '7.2.0'
compile group: 'org.testng', name: 'testng', version: '7.0.0'
compile group: 'commons-lang', name: 'commons-lang', version: '2.6'
compile group: 'log4j', name: 'log4j', version: '1.2.17'
compile group: 'org.apache.commons', name: 'commons-compress', version: '1.15'
}
javadoc {
source = project.sourceSets.main.java.srcDirs
options.linkSource true
failOnError false
}
task fatJar(type: Jar) {
description 'Assembles a jar archive with dependencies.'
baseName = project.name
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
fatJar.dependsOn(check)