<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>
<!-- ============================================== -->
<!-- Configuration -->
<!-- ============================================== -->
<groupId>org.whiley</groupId>
<artifactId>wycc</artifactId>
<version>0.5.1</version>
<packaging>jar</packaging>
<licenses>
<license>
<name>BSD 3-Clause License</name>
<distribution>repo</distribution>
</license>
</licenses>
<!-- ============================================== -->
<!-- Description -->
<!-- ============================================== -->
<name>Whiley Compiler Collection</name>
<description>
A compiler framework for managing the Whiley Compiler and related tooling.
</description>
<url>http://whiley.org/</url>
<scm>
<url>https://github.com/Whiley/WhileyCompilerCollection</url>
</scm>
<developers>
<developer>
<id>redjamjar</id>
<name>David J. Pearce</name>
<email>david.pearce@ecs.vuw.ac.nz</email>
<url>http://www.ecs.vuw.ac.nz/~djp</url>
</developer>
</developers>
<!-- ============================================== -->
<!-- Dependencies -->
<!-- ============================================== -->
<dependencies>
</dependencies>
<!-- ============================================== -->
<!-- Deployment -->
<!-- ============================================== -->
<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 Config -->
<!-- ============================================== -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<!-- ============================================== -->
<!-- Sources Attachment -->
<!-- ============================================== -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- ============================================== -->
<!-- JavaDoc Attachment -->
<!-- ============================================== -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<!-- ============================================== -->
<!-- GPG Signing -->
<!-- ============================================== -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- ============================================== -->
<!-- Deployment -->
<!-- ============================================== -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</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>
</project>
|