forked from chenpeng9/Appium-Opencv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
27 lines (22 loc) · 1 KB
/
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
group '1'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'io.appium', name: 'java-client', version:'3.0.0'
compile group: 'com.google.code.gson', name: 'gson', version:'2.2.4'
testCompile group: 'junit', name: 'junit', version:'4.11'
testCompile group: 'com.googlecode.json-simple', name: 'json-simple', version:'1.1'
testCompile group: 'commons-lang', name: 'commons-lang', version:'2.6'
testCompile group: 'com.saucelabs', name: 'sauce_junit', version:'2.1.3'
// testCompile group: 'junit', name: 'junit', version: '4.11'
// compile group: 'org.bytedeco', name: 'javacv', version: '1.2'
// compile group: 'org.bytedeco.javacpp-presets', name: 'opencv', version: '3.1.0-1.2'
// compile group: 'org.bytedeco.javacpp-presets', name: 'opencv', version: '3.1.0-1.2', classifier:'macosx-x86_64'
// configurations {
// all*.exclude group: 'org.bytedeco', module: 'javacpp-presets'
// }
}