ProcessingTUIO
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>fr.inria.potioc</groupId> <artifactId>ProcessingTUIO</artifactId> <version>1.1.0</version> </dependency>
<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> <groupId>fr.inria.potioc</groupId> <artifactId>ProcessingTUIO</artifactId> <version>1.1.0</version> <packaging>jar</packaging> <name>processing TUIO</name> <description>Tuio Processing, PapARt version.</description> <url>http://papart.gforge.inria.fr</url> <organization> <name>TUIO community</name> <url>http://www.tuio.org/</url> </organization> <developers> <developer> <name>Martin Kaltenbrunner (martin_at_tuio_dot_org)</name> <url>http://www.tuio.org/?members</url> <roles> <role>TUIO Project Coordinator</role> </roles> </developer> <developer> <name>Jeremy Laviole</name> <url>http://jeremy.laviole.name</url> <roles> <role>TUIO Processing deployment and update</role> </roles> </developer> </developers> <licenses> <license> <name>GPLv3 or later</name> <url>http://www.gnu.org/software/classpath/license.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <tag>5740a45f76b1df7001935b430bf78b165ce3b86e</tag> <url>https://github.com/potioc/ProcessingTUIO</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.6</version> <!-- <configuration> <finalName>processingTUIO</finalName> </configuration>--> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.processing</groupId> <artifactId>core</artifactId> <version>2.2.1</version> </dependency> </dependencies> </project>