88 lines
2.9 KiB
XML
88 lines
2.9 KiB
XML
<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>
|
|
<groupId>com.github.rayman2200</groupId>
|
|
<artifactId>mustang-sample-project</artifactId>
|
|
<version>1.3.0.1-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<scm>
|
|
<connection>scm:git:https://github.com/jstaerk/mustangproject.git</connection>
|
|
<developerConnection>scm:git:https://github.com/jstaerk/mustangproject.git</developerConnection>
|
|
<url>https://github.com/jstaerk/mustangproject</url>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>internal.repo</id>
|
|
<name>Temporary Staging Repository</name>
|
|
<url>file://${project.build.directory}/mvn-repo</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<github.global.server>github</github.global.server>
|
|
<additionalparam>-Xdoclint:none</additionalparam><!-- Skip error check for javadoc -->
|
|
<maven.compiler.compilerVersion>1.6</maven.compiler.compilerVersion>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>mustang</module>
|
|
<module>pdfa3-sample</module>
|
|
</modules>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
<artifactId>pdfbox</artifactId>
|
|
<version>1.8.8</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.11</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<version>2.8.2</version>
|
|
<configuration>
|
|
<altDeploymentRepository>internal.repo::default::file://${project.build.directory}/mvn-repo</altDeploymentRepository>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.github.github</groupId>
|
|
<artifactId>site-maven-plugin</artifactId>
|
|
<version>0.11</version>
|
|
<configuration>
|
|
<message>Maven artifacts for ${project.version}</message> <!-- git commit message -->
|
|
<noJekyll>true</noJekyll> <!-- disable webpage processing -->
|
|
<outputDirectory>${project.build.directory}/mvn-repo</outputDirectory> <!-- matches distribution management repository url above -->
|
|
<branch>refs/heads/mvn-repo</branch> <!-- remote branch name -->
|
|
<includes>
|
|
<include>**/*</include>
|
|
</includes>
|
|
<merge>true</merge>
|
|
<repositoryName>mustangproject</repositoryName> <!-- github repo name -->
|
|
<repositoryOwner>jstaerk</repositoryOwner> <!-- github username -->
|
|
</configuration>
|
|
<executions>
|
|
<!-- run site-maven-plugin's 'site' target as part of the build's normal
|
|
'deploy' phase -->
|
|
<execution>
|
|
<goals>
|
|
<goal>site</goal>
|
|
</goals>
|
|
<phase>deploy</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|