Skip to content
Snippets Groups Projects
pom.xml 7.42 KiB
Newer Older
<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">
Patrick Sharp's avatar
Patrick Sharp committed
    <modelVersion>4.0.0</modelVersion>
Jeffrey Phillips Freeman's avatar
Jeffrey Phillips Freeman committed

    <parent>
        <groupId>com.syncleus</groupId>
        <artifactId>syncleus</artifactId>
Jeffrey Phillips Freeman's avatar
Jeffrey Phillips Freeman committed
    </parent>

    <groupId>com.aparapi</groupId>
    <version>2.0.1-SNAPSHOT</version>
Patrick Sharp's avatar
Patrick Sharp committed
    <packaging>jar</packaging>
        <maven>3.3.9</maven>
Patrick Sharp's avatar
Patrick Sharp committed
    <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>
        <maven.compiler.testSource>1.8</maven.compiler.testSource>
        <maven.compiler.testTarget>1.8</maven.compiler.testTarget>
Patrick Sharp's avatar
Patrick Sharp committed
    </properties>
Jeffrey Phillips Freeman's avatar
Jeffrey Phillips Freeman committed

    <name>Aparapi</name>
    <description>A java OpenCl framework.</description>
    <url>https://git.qoto.org/aparapi/aparapi</url>
Jeffrey Phillips Freeman's avatar
Jeffrey Phillips Freeman committed

    <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>
Jeffrey Phillips Freeman's avatar
Jeffrey Phillips Freeman committed
    </organization>

    <scm>
        <connection>scm:git:https://github.com/Syncleus/aparapi.git</connection>
        <developerConnection>scm:git:ssh://git@git.qoto.org/aparapi/aparapi.git</developerConnection>
        <url>https://git.qoto.org/aparapi/aparapi</url>
Jeffrey Phillips Freeman's avatar
Jeffrey Phillips Freeman committed
    </scm>

    <issueManagement>
        <system>github</system>
        <url>https://git.qoto.org/aparapi/aparapi/issues</url>
Jeffrey Phillips Freeman's avatar
Jeffrey Phillips Freeman committed
    </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://syncleus.com</organizationUrl>
Jeffrey Phillips Freeman's avatar
Jeffrey Phillips Freeman committed
            <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-jni</artifactId>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.bcel</groupId>
            <artifactId>bcel</artifactId>
            <version>6.5.0</version>
        </dependency>
Saurabh Rawat's avatar
Saurabh Rawat committed
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-library</artifactId>
            <version>2.13.4</version>
Saurabh Rawat's avatar
Saurabh Rawat committed
        </dependency>
Jeffrey Phillips Freeman's avatar
Jeffrey Phillips Freeman committed
    <build>
        <defaultGoal>package</defaultGoal>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
            </plugin>
Saurabh Rawat's avatar
Saurabh Rawat committed
            <plugin>
                <groupId>net.alchim31.maven</groupId>
                <artifactId>scala-maven-plugin</artifactId>
                <version>4.3.0</version>
Saurabh Rawat's avatar
Saurabh Rawat committed
                <executions>
                    <execution>
                        <goals>
                            <goal>compile</goal>
                            <goal>testCompile</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <scalaVersion>2.13.1</scalaVersion>
Saurabh Rawat's avatar
Saurabh Rawat committed
                </configuration>
            </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:all -Xdoclint:-missing</additionalparam>
                    <additionalOptions>-Xdoclint:all -Xdoclint:-missing</additionalOptions>
                    <additionalJOptions>
                        <additionalJOption>-Xdoclint:all</additionalJOption>
                        <additionalJOption>-Xdoclint:-missing</additionalJOption>
                    </additionalJOptions>
                </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>
                  <argLine>@{argLine} -Xmx2048m -XX:MaxPermSize=512m</argLine>
            </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>
                <configuration>
                    <skipExistingHeaders>false</skipExistingHeaders>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.sonatype.plugins</groupId>
                <artifactId>nexus-staging-maven-plugin</artifactId>
                <extensions>true</extensions>
                <configuration>
                    <serverId>ossrh</serverId>
                    <nexusUrl>https://oss.sonatype.org/</nexusUrl>
                    <autoReleaseAfterClose>true</autoReleaseAfterClose>
                </configuration>
            </plugin>
        </plugins>
Jeffrey Phillips Freeman's avatar
Jeffrey Phillips Freeman committed
    </build>

    <reporting>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <configuration>
Jeffrey Phillips Freeman's avatar
Jeffrey Phillips Freeman committed
    <profiles>
        <profile>
            <id>sign</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <configuration>
                            <keyname>8762A2BFD91F0468</keyname>
                        </configuration>
Jeffrey Phillips Freeman's avatar
Jeffrey Phillips Freeman committed
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>