From 74da9b0c70e3039d25805d2d0e92fc14e3eea955 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Sun, 16 Oct 2016 17:08:03 -0400 Subject: [PATCH] updated pom with some metadata. --- pom.xml | 84 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) diff --git a/pom.xml b/pom.xml index 2aa1eb61..8fccd2a8 100644 --- a/pom.xml +++ b/pom.xml @@ -1,13 +1,97 @@ <?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-SNAPSHOT</version> + </parent> + <groupId>com.syncleus.aparapi</groupId> <artifactId>aparapi-examples</artifactId> <version>1.0.0-SNAPSHOT</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> + + <build> + <defaultGoal>package</defaultGoal> + </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> \ No newline at end of file -- GitLab