Skip to content
This repository was archived by the owner on Dec 7, 2020. It is now read-only.

Commit 2fe904c

Browse files
authored
Merge pull request #2 from bitbar/opencv-update
Opencv update
2 parents 8758e8d + 404240a commit 2fe904c

File tree

16 files changed

+60
-240
lines changed

16 files changed

+60
-240
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
dependency-reduced-pom.xml
22
example/lib/image_recognition_library_test.jar
33
target/
4-
testdroid.properties
54
run-tests.sh
65
*.zip
76
application.ipa
@@ -10,4 +9,5 @@ application.apk
109
*.project
1110
*.settings/
1211
.DS_Store
13-
12+
*.idea
13+
*.iml

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ Run Appium:
4040

4141
```
4242
cd example
43-
44-
# Install OpenCV (change path according to your platform)
45-
mvn install:install-file -Dfile=lib/linux/opencv/opencv-2413.jar -DgroupId=opencv -DartifactId=opencv -Dversion=2.4.13 -Dpackaging=jar
4643
4744
# Download the example Android application
4845
wget https://github.com/bitbar/testdroid-samples/blob/master/apps/builds/BitbarSampleApp.apk -O application.apk

example/lib/linux/opencv/LICENSE

Lines changed: 0 additions & 41 deletions
This file was deleted.
-17.8 MB
Binary file not shown.
-440 KB
Binary file not shown.

example/lib/mac/opencv/LICENSE

Lines changed: 0 additions & 41 deletions
This file was deleted.
-16.7 MB
Binary file not shown.
-440 KB
Binary file not shown.

example/lib/win/opencv/LICENSE

Lines changed: 0 additions & 41 deletions
This file was deleted.
-442 KB
Binary file not shown.
-9.19 MB
Binary file not shown.
-7.67 MB
Binary file not shown.

example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<dependency>
1010
<groupId>com.testdroid</groupId>
1111
<artifactId>mobile-opencv-image-recognition-library</artifactId>
12-
<version>0.2</version>
12+
<version>0.3</version>
1313
</dependency>
1414
<dependency>
1515
<groupId>ch.qos.logback</groupId>
@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>io.appium</groupId>
2121
<artifactId>java-client</artifactId>
22-
<version>4.1.2</version>
22+
<version>5.0.0-BETA7</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>com.testdroid</groupId>

library/pom.xml

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.testdroid</groupId>
66
<artifactId>mobile-opencv-image-recognition-library</artifactId>
7-
<version>0.2</version>
7+
<version>0.3</version>
88
<packaging>jar</packaging>
99
<name>OpenCV Mobile Image Recognition Library</name>
1010
<description>Library for image recognition that can be used in mobile testing with for example Appium</description>
@@ -43,31 +43,21 @@
4343
<artifactId>logback-classic</artifactId>
4444
<version>1.1.7</version>
4545
</dependency>
46-
<dependency>
47-
<groupId>io.appium</groupId>
48-
<artifactId>java-client</artifactId>
49-
<version>4.1.2</version>
50-
</dependency>
5146
<dependency>
5247
<groupId>org.slf4j</groupId>
5348
<artifactId>slf4j-api</artifactId>
5449
<version>1.7.4</version>
5550
</dependency>
5651
<dependency>
57-
<groupId>opencv</groupId>
52+
<groupId>org.openpnp</groupId>
5853
<artifactId>opencv</artifactId>
59-
<version>2.4.13</version>
54+
<version>3.2.0-1</version>
6055
</dependency>
6156
<dependency>
6257
<groupId>org.json</groupId>
6358
<artifactId>json</artifactId>
6459
<version>20151123</version>
6560
</dependency>
66-
<dependency>
67-
<groupId>junit</groupId>
68-
<artifactId>junit</artifactId>
69-
<version>4.12</version>
70-
</dependency>
7161
</dependencies>
7262
<build>
7363
<plugins>

0 commit comments

Comments
 (0)