Skip to content

Commit

Permalink
* Add missing dependencies for JogAmp in the pom.xml file (issue #2)
Browse files Browse the repository at this point in the history
  • Loading branch information
saudet committed May 7, 2014
1 parent 6c8b8d7 commit b0a6088
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

* Add missing dependencies for JogAmp in the `pom.xml` file ([issue #2](https://github.com/bytedeco/javacv/issues/2))
* Add new `OpenCVFaceRecognizer` sample, thanks to Petter Christian Bjelland
* Add new `OpticalFlowDense` sample, thanks to Dawit Gebreyohannes ([issue #468](http://code.google.com/p/javacv/issues/detail?id=468))
* Make it easier to try out the `FaceRecognition.java` sample ([issue #1](https://github.com/bytedeco/javacv/issues/1))
Expand Down
18 changes: 17 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.bytedeco</groupId>
<artifactId>javacv</artifactId>
<version>0.8</version>
<version>0.8-1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>JavaCV</name>
Expand Down Expand Up @@ -148,6 +148,22 @@
<version>2.3.0-${project.version}</version>
<classifier>${platform}</classifier>
</dependency>

<dependency>
<groupId>org.jogamp.gluegen</groupId>
<artifactId>gluegen-rt-main</artifactId>
<version>2.0.2</version>
</dependency>
<dependency>
<groupId>org.jogamp.jogl</groupId>
<artifactId>jogl-all-main</artifactId>
<version>2.0.2</version>
</dependency>
<dependency>
<groupId>org.jogamp.jocl</groupId>
<artifactId>jocl-main</artifactId>
<version>2.0.2</version>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit b0a6088

Please sign in to comment.