Skip to content

Commit

Permalink
Fix dependencies, upgrade plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
sarxos committed Sep 23, 2014
1 parent df24bfd commit 8a13680
Show file tree
Hide file tree
Showing 3 changed files with 133 additions and 3 deletions.
19 changes: 18 additions & 1 deletion webcam-capture-drivers/driver-openimaj/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@
<groupId>org.openimaj</groupId>
<artifactId>core-video-capture</artifactId>
<version>1.3</version>

<!-- webcam-capture doesn't need most of the transitive dependencies -->
<exclusions>
<!-- webcam-capture doesn't need most of the transitive dependencies -->
<exclusion>
<groupId>jama</groupId>
<artifactId>jama</artifactId>
Expand Down Expand Up @@ -106,6 +107,22 @@
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</exclusion>
<exclusion>
<groupId>net.sourceforge.jmatio</groupId>
<artifactId>jmatio</artifactId>
</exclusion>
<exclusion>
<groupId>com.caffeineowl.graphics</groupId>
<artifactId>BezierUtils</artifactId>
</exclusion>
<exclusion>
<groupId>javax.media</groupId>
<artifactId>jai-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.media</groupId>
<artifactId>jai-codec</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
Expand Down
5 changes: 3 additions & 2 deletions webcam-capture-examples/webcam-capture-applet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.0</version>
<version>2.3</version>
<configuration>
<artifactSet>
<includes>
Expand All @@ -82,6 +82,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jarsigner-plugin</artifactId>
<version>1.3.2</version>
<configuration>
<keystore>keystore.jks</keystore>
<alias>example</alias>
Expand All @@ -101,4 +102,4 @@

</build>

</project>
</project>
112 changes: 112 additions & 0 deletions webcam-capture-examples/webcam-capture-detect-face/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,118 @@
<groupId>org.openimaj</groupId>
<artifactId>faces</artifactId>
<version>1.3</version>

<!-- webcam-capture doesn't need most of the transitive dependencies -->
<exclusions>
<exclusion>
<groupId>jama</groupId>
<artifactId>jama</artifactId>
</exclusion>
<exclusion>
<groupId>com.googlecode.matrix-toolkits-java</groupId>
<artifactId>mtj</artifactId>
</exclusion>
<exclusion>
<groupId>com.googlecode.netlib-java</groupId>
<artifactId>netlib-java</artifactId>
</exclusion>
<exclusion>
<groupId>net.sf.jafama</groupId>
<artifactId>JaFaMa</artifactId>
</exclusion>
<exclusion>
<groupId>jgrapht</groupId>
<artifactId>jgrapht</artifactId>
</exclusion>
<exclusion>
<groupId>ch.akuhn.matrix</groupId>
<artifactId>MatrixLib</artifactId>
</exclusion>
<exclusion>
<groupId>gov.sandia.foundry</groupId>
<artifactId>gov-sandia-cognition-common-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
</exclusion>
<exclusion>
<groupId>gov.sandia.foundry</groupId>
<artifactId>gov-sandia-cognition-common-data</artifactId>
</exclusion>
<exclusion>
<groupId>gov.sandia.foundry</groupId>
<artifactId>gov-sandia-cognition-learning-core</artifactId>
</exclusion>
<exclusion>
<groupId>gov.sandia.foundry</groupId>
<artifactId>gov-sandia-cognition-text-core</artifactId>
</exclusion>
<exclusion>
<groupId>gov.sandia.foundry</groupId>
<artifactId>gov-sandia-cognition-framework-core</artifactId>
</exclusion>
<exclusion>
<groupId>gov.sandia.foundry</groupId>
<artifactId>gov-sandia-cognition-framework-learning</artifactId>
</exclusion>
<exclusion>
<groupId>org.openimaj</groupId>
<artifactId>core-citation</artifactId>
</exclusion>
<exclusion>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
</exclusion>
<exclusion>
<groupId>net.sf.trove4j</groupId>
<artifactId>trove4j</artifactId>
</exclusion>
<exclusion>
<groupId>colt</groupId>
<artifactId>colt</artifactId>
</exclusion>
<exclusion>
<groupId>com.esotericsoftware.kryo</groupId>
<artifactId>kryo</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</exclusion>
<exclusion>
<groupId>net.sourceforge.jmatio</groupId>
<artifactId>jmatio</artifactId>
</exclusion>
<exclusion>
<groupId>com.caffeineowl.graphics</groupId>
<artifactId>BezierUtils</artifactId>
</exclusion>
<exclusion>
<groupId>javax.media</groupId>
<artifactId>jai-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.media</groupId>
<artifactId>jai-codec</artifactId>
</exclusion>
<exclusion>
<groupId>org.bethecoder</groupId>
<artifactId>ascii-table</artifactId>
</exclusion>
<exclusion>
<groupId>xuggle</groupId>
<artifactId>xuggle-xuggler-lgpl</artifactId>
</exclusion>
<exclusion>
<groupId>de.bwaldvogel</groupId>
<artifactId>liblinear-dense</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

Expand Down

0 comments on commit 8a13680

Please sign in to comment.