add openCV to project

This commit is contained in:
Mateusz Kowalczyk 2020-01-23 13:08:55 +01:00
parent e8feaaf4af
commit 9c6e9e09ce
1 changed files with 13 additions and 0 deletions

13
pom.xml
View File

@ -12,6 +12,7 @@
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.jupiter.version>5.5.2</junit.jupiter.version> <junit.jupiter.version>5.5.2</junit.jupiter.version>
<project.path.lib>${project.basedir}/libs</project.path.lib>
</properties> </properties>
<dependencies> <dependencies>
@ -42,6 +43,18 @@
<artifactId>sqlite-jdbc</artifactId> <artifactId>sqlite-jdbc</artifactId>
<version>3.28.0</version> <version>3.28.0</version>
</dependency> </dependency>
<dependency>
<groupId>org.opencv</groupId>
<artifactId>opencv-jar</artifactId>
<version>4.1.0</version>
<scope>system</scope>
<systemPath>${project.path.lib}/openCv/opencv-410.jar</systemPath>
</dependency>
<dependency>
<groupId>opencvjar</groupId>
<artifactId>opencvjar</artifactId>
<version>4.1.0</version>
</dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>