-
Notifications
You must be signed in to change notification settings - Fork 35
/
build.gradle
34 lines (26 loc) · 845 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
32
33
34
apply plugin: 'java'
apply plugin: 'application'
mainClassName = 'org.oneframework.runner.TestRunner'
group 'OneFramework'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'io.appium', name: 'java-client', version: '6.0.0'
compile group: 'org.testng', name: 'testng', version: '6.9.10'
compile group: 'io.github.bonigarcia', name: 'webdrivermanager', version: '3.3.0'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile 'ru.yandex.qatools.ashot:ashot:1.5.2'
compile group: 'io.qameta.allure', name: 'allure-testng', version: '2.8.1'
}
jar {
manifest {
attributes 'Main-Class': mainClassName
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}