-
Notifications
You must be signed in to change notification settings - Fork 20
/
build.gradle
30 lines (25 loc) · 842 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
group 'com.testerhome'
version '1.0-SNAPSHOT'
def clientName = "uiautomatorviewer.jar"
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
jar {
manifest {
attributes 'Implementation-Title': 'TesterHom uiautomator',
'Implementation-Version': version,
'Main-Class': 'com.android.uiautomator.UiAutomatorViewer',
'Class-Path':'org-eclipse-jface-3.6.2.jar ddmlib-25.3.2.jar ' +
'org-eclipse-core-commands-3.6.0.jar org-eclipse-equinox-common-3.6.0.jar ' +
'osgi-4.0.0.jar common.jar kxml2-2.3.0.jar annotations.jar guava-18.0.jar'
}
archiveName = clientName
}
task createWrapper(type: Wrapper) {
gradleVersion = '4.3.1'
}
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
}