<?xml version="1.0" encoding="UTF-8"?>
<!--


DO NOT MODIFIY - GENERATED CODE


-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>propane</groupId>
  <artifactId>rp5extras</artifactId>
  <version>0.4.0.pre</version>
  <name>rp5extras</name>
  <description>rp5extras for propane</description>
  <url>https://github.com/monkstone/propane</url>
  <organization>
    <name>ruby-processing</name>
    <url>https://ruby-processing.github.io</url>
  </organization>
  <licenses>
    <license>
      <name>MIT</name>
      <url>http://www.opensource.org/licenses/mit-license.php</url>
    </license>
    <license>
      <name>GPL 3</name>
      <url>http://www.gnu.org/licenses/gpl-3.0-standalone.html</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>monkstone</id>
      <name>Martin Prout</name>
      <roles>
        <role>developer</role>
      </roles>
    </developer>
    <developer>
      <id>filib</id>
      <name>Phillip Cunningham</name>
      <roles>
        <role>developer</role>
      </roles>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/monkstone/propane.git</connection>
    <developerConnection>scm:git:git@github.com/monkstone/propane.git</developerConnection>
    <url>https://github.com/monkstone/propane</url>
  </scm>
  <issueManagement>
    <system>Github</system>
    <url>https://github.com/monkstone/propane/issues</url>
  </issueManagement>
  <properties>
    <jogl.version>2.1.5-01</jogl.version>
    <jruby.api>http://jruby.org/apidocs/</jruby.api>
    <source.directory>src</source.directory>
    <maven.compiler.target>1.7</maven.compiler.target>
    <processing.api>http://processing.github.io/processing-javadocs/core/</processing.api>
    <propane.basedir>${project.basedir}</propane.basedir>
    <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
    <polyglot.dump.pom>pom.xml</polyglot.dump.pom>
    <maven.compiler.source>1.7</maven.compiler.source>
  </properties>
  <dependencies>
    <dependency>
      <groupId>org.jruby</groupId>
      <artifactId>jruby</artifactId>
      <version>9.0.5.0</version>
      <type>pom</type>
    </dependency>
    <dependency>
      <groupId>org.processing</groupId>
      <artifactId>core</artifactId>
      <version>2.2.1</version>
    </dependency>
    <dependency>
      <groupId>org.jogamp.jogl</groupId>
      <artifactId>jogl-all</artifactId>
      <version>${jogl.version}</version>
    </dependency>
    <dependency>
      <groupId>org.jogamp.gluegen</groupId>
      <artifactId>gluegen-rt-main</artifactId>
      <version>${jogl.version}</version>
    </dependency>
  </dependencies>
  <build>
    <sourceDirectory>src</sourceDirectory>
    <defaultGoal>package</defaultGoal>
    <finalName>rpextras</finalName>
    <pluginManagement>
      <plugins>
        <plugin>
          <artifactId>maven-resources-plugin</artifactId>
          <version>2.6</version>
        </plugin>
        <plugin>
          <artifactId>maven-dependency-plugin</artifactId>
          <version>2.10</version>
          <executions>
            <execution>
              <id>default-cli</id>
              <configuration>
                <artifactItems>
                  <artifactItem>
                    <groupId>org.processing</groupId>
                    <artifactId>core</artifactId>
                    <version>2.2.1</version>
                    <type>jar</type>
                    <outputDirectory>${propane.basedir}/lib</outputDirectory>
                  </artifactItem>
                  <artifactItem>
                    <groupId>org.jogamp.jogl</groupId>
                    <artifactId>jogl-all</artifactId>
                    <version>${jogl.version}</version>
                    <type>jar</type>
                    <outputDirectory>${propane.basedir}/lib</outputDirectory>
                  </artifactItem>
                  <artifactItem>
                    <groupId>org.jogamp.gluegen</groupId>
                    <artifactId>gluegen-rt</artifactId>
                    <version>${jogl.version}</version>
                    <type>jar</type>
                    <outputDirectory>${propane.basedir}/lib</outputDirectory>
                  </artifactItem>
                  <artifactItem>
                    <groupId>org.jogamp.jogl</groupId>
                    <artifactId>jogl-all</artifactId>
                    <version>${jogl.version}</version>
                    <classifier>natives-linux-amd64</classifier>
                    <type>jar</type>
                    <outputDirectory>${propane.basedir}/lib</outputDirectory>
                  </artifactItem>
                  <artifactItem>
                    <groupId>org.jogamp.gluegen</groupId>
                    <artifactId>gluegen-rt</artifactId>
                    <version>${jogl.version}</version>
                    <type>jar</type>
                    <classifier>natives-linux-amd64</classifier>
                    <outputDirectory>${propane.basedir}/lib</outputDirectory>
                  </artifactItem>
                  <artifactItem>
                    <groupId>org.jogamp.jogl</groupId>
                    <artifactId>jogl-all</artifactId>
                    <version>${jogl.version}</version>
                    <classifier>natives-macosx-universal</classifier>
                    <type>jar</type>
                    <outputDirectory>${propane.basedir}/lib</outputDirectory>
                  </artifactItem>
                  <artifactItem>
                    <groupId>org.jogamp.gluegen</groupId>
                    <artifactId>gluegen-rt</artifactId>
                    <version>${jogl.version}</version>
                    <type>jar</type>
                    <classifier>natives-macosx-universal</classifier>
                    <outputDirectory>${propane.basedir}/lib</outputDirectory>
                  </artifactItem>
                </artifactItems>
              </configuration>
            </execution>
          </executions>
        </plugin>
        <plugin>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>3.3</version>
          <configuration>
            <source>${maven.compiler.source}</source>
            <target>${maven.compiler.target}</target>
          </configuration>
        </plugin>
        <plugin>
          <artifactId>maven-javadoc-plugin</artifactId>
          <version>2.10.3</version>
          <configuration>
            <detect_offline_links>false</detect_offline_links>
            <links>
              <link>${jruby.api}</link>
              <link>${processing.api}</link>
            </links>
          </configuration>
        </plugin>
        <plugin>
          <artifactId>maven-jar-plugin</artifactId>
          <version>2.6</version>
          <configuration>
            <archive>
              <manifestFile>MANIFEST.MF</manifestFile>
            </archive>
          </configuration>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>
</project>