processing
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>processing</artifactId>
<version>1.3.10</version>
</dependency><?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>openimaj-tools</artifactId>
<groupId>org.openimaj</groupId>
<version>1.3.10</version>
<relativePath>../</relativePath>
</parent>
<artifactId>processing</artifactId>
<name>OpenIMAJ Processing</name>
<description>Set of tools for integrating OpenIMAJ with processing</description>
<inceptionYear>2011</inceptionYear>
<properties>
<processingRoot>/Users/ss/Documents/Processing/libraries/</processingRoot>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>ImprovedArgs4J</artifactId>
<version>1.3.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>processing-core</artifactId>
<version>1.3.10</version>
</dependency>
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>faces</artifactId>
<version>1.3.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>core-video</artifactId>
<version>1.3.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>video-processing</artifactId>
<version>1.3.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>xuggle-video</artifactId>
<version>1.3.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.1</version>
<configuration>
<finalName>openimaj-processing</finalName>
<appendAssemblyId>false</appendAssemblyId>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<inherited>false</inherited>
<version>1.4</version>
<!-- <executions>
<execution>
<phase>verify</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<source>${basedir}/src/script/createProcessingLibrary.groovy</source>
</configuration>
</execution>
</executions> -->
</plugin>
</plugins>
</build>
</project>