aparapi-examples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.aparapi</groupId> <artifactId>aparapi-examples</artifactId> <version>1.1.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <groupId>com.syncleus</groupId> <artifactId>syncleus</artifactId> <version>3</version> </parent> <groupId>com.aparapi</groupId> <artifactId>aparapi-examples</artifactId> <version>1.1.1</version> <packaging>jar</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <name>Aparapi Examples</name> <description>A collection of examples for the aparapi framework.</description> <url>https://github.com/Syncleus/aparapi</url> <licenses> <license> <name>Apache Software License version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>Syncleus</name> <url>http://www.syncleus.com</url> </organization> <scm> <connection>scm:git:https://github.com/Syncleus/aparapi-examples.git</connection> <developerConnection>scm:git:ssh://git@github.com/Syncleus/aparapi-examples.git</developerConnection> <url>https://github.com/Syncleus/aparapi-examples</url> </scm> <issueManagement> <system>github</system> <url>https://github.com/Syncleus/aparapi-examples/issues</url> </issueManagement> <developers> <developer> <id>JeffreyPhillipsFreeman</id> <name>Jeffrey Phillips Freeman</name> <email>Jeffrey.Freeman@Syncleus.com</email> <url>http://JeffreyFreeman.me</url> <organization>Syncleus</organization> <organizationUrl>http://www.syncleus.com</organizationUrl> <roles> <role>Chief Technology Officer</role> <role>Project Owner</role> <role>Developer</role> </roles> <timezone>-5</timezone> </developer> </developers> <repositories> <repository> <id>ossrh.snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <dependencies> <dependency> <groupId>com.aparapi</groupId> <artifactId>aparapi</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>org.jogamp.jogl</groupId> <artifactId>jogl-all</artifactId> <version>2.3.2</version> </dependency> <dependency> <groupId>org.jogamp.gluegen</groupId> <artifactId>gluegen</artifactId> <version>2.3.2</version> </dependency> </dependencies> <build> <defaultGoal>clean package exec:java</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <configuration> <mainClass>com.aparapi.examples.All</mainClass> <arguments> <argument>com.aparapi.executionMode=GPU</argument> <argument>com.aparapi.enableShowGeneratedOpenCL=true</argument> </arguments> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.9.0</version> <configuration> <skipExistingHeaders>false</skipExistingHeaders> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>sign</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> </project>