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

Commit

Permalink
Merge pull request #2 from bitbar/opencv-update
Browse files Browse the repository at this point in the history
Opencv update
  • Loading branch information
severi committed Apr 25, 2017
2 parents 8758e8d + 404240a commit 2fe904c
Show file tree
Hide file tree
Showing 16 changed files with 60 additions and 240 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
dependency-reduced-pom.xml
example/lib/image_recognition_library_test.jar
target/
testdroid.properties
run-tests.sh
*.zip
application.ipa
Expand All @@ -10,4 +9,5 @@ application.apk
*.project
*.settings/
.DS_Store

*.idea
*.iml
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ Run Appium:

```
cd example
# Install OpenCV (change path according to your platform)
mvn install:install-file -Dfile=lib/linux/opencv/opencv-2413.jar -DgroupId=opencv -DartifactId=opencv -Dversion=2.4.13 -Dpackaging=jar
# Download the example Android application
wget https://github.com/bitbar/testdroid-samples/blob/master/apps/builds/BitbarSampleApp.apk -O application.apk
Expand Down
41 changes: 0 additions & 41 deletions example/lib/linux/opencv/LICENSE

This file was deleted.

Binary file removed example/lib/linux/opencv/libopencv_java2413.so
Binary file not shown.
Binary file removed example/lib/linux/opencv/opencv-2413.jar
Binary file not shown.
41 changes: 0 additions & 41 deletions example/lib/mac/opencv/LICENSE

This file was deleted.

Binary file removed example/lib/mac/opencv/libopencv_java2413.dylib
Binary file not shown.
Binary file removed example/lib/mac/opencv/opencv-2413.jar
Binary file not shown.
41 changes: 0 additions & 41 deletions example/lib/win/opencv/LICENSE

This file was deleted.

Binary file removed example/lib/win/opencv/opencv-2413.jar
Binary file not shown.
Binary file removed example/lib/win/opencv/x64/opencv_java2413.dll
Binary file not shown.
Binary file removed example/lib/win/opencv/x86/opencv_java2413.dll
Binary file not shown.
4 changes: 2 additions & 2 deletions example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<dependency>
<groupId>com.testdroid</groupId>
<artifactId>mobile-opencv-image-recognition-library</artifactId>
<version>0.2</version>
<version>0.3</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
Expand All @@ -19,7 +19,7 @@
<dependency>
<groupId>io.appium</groupId>
<artifactId>java-client</artifactId>
<version>4.1.2</version>
<version>5.0.0-BETA7</version>
</dependency>
<dependency>
<groupId>com.testdroid</groupId>
Expand Down
16 changes: 3 additions & 13 deletions library/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.testdroid</groupId>
<artifactId>mobile-opencv-image-recognition-library</artifactId>
<version>0.2</version>
<version>0.3</version>
<packaging>jar</packaging>
<name>OpenCV Mobile Image Recognition Library</name>
<description>Library for image recognition that can be used in mobile testing with for example Appium</description>
Expand Down Expand Up @@ -43,31 +43,21 @@
<artifactId>logback-classic</artifactId>
<version>1.1.7</version>
</dependency>
<dependency>
<groupId>io.appium</groupId>
<artifactId>java-client</artifactId>
<version>4.1.2</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.4</version>
</dependency>
<dependency>
<groupId>opencv</groupId>
<groupId>org.openpnp</groupId>
<artifactId>opencv</artifactId>
<version>2.4.13</version>
<version>3.2.0-1</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20151123</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
Loading

0 comments on commit 2fe904c

Please sign in to comment.