132 lines
4.4 KiB
XML
132 lines
4.4 KiB
XML
<?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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.mustangproject.ZUGFeRD</groupId>
|
|
<artifactId>mustang</artifactId>
|
|
<name>Mustang</name>
|
|
<version>1.4.0</version>
|
|
<description>The Mustang project is a java library to read and write ZUGFeRD meta data inside your invoice PDFs</description>
|
|
<url>http://www.mustangproject.org/</url>
|
|
<mailingLists>
|
|
<mailingList>
|
|
<name>User List</name>
|
|
<archive>https://groups.google.com/forum/?hl=de#!forum/mustangproject</archive>
|
|
</mailingList>
|
|
</mailingLists>
|
|
<developers>
|
|
<developer>
|
|
<name>Jochen Stärk</name>
|
|
<email>jstaerk@usegroup.de</email>
|
|
<roles>
|
|
<role>architect</role>
|
|
<role>developer</role>
|
|
</roles>
|
|
</developer>
|
|
<developer>
|
|
<name>Alexander Schmidt</name>
|
|
<email>schmidt.alexander@mail.de</email>
|
|
<roles>
|
|
<role>developer</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
<licenses>
|
|
<license>
|
|
<name>Apache License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
<comments>A business-friendly OSS license</comments>
|
|
</license>
|
|
</licenses>
|
|
<scm>
|
|
<connection>scm:git:https://github.com/ZUGFeRD/mustangproject.git</connection>
|
|
<developerConnection>scm:git:https://github.com/ZUGFeRD/mustangproject.git</developerConnection>
|
|
<tag>v1.4.0</tag>
|
|
<url>https://github.com/ZUGFeRD/mustangproject</url>
|
|
</scm>
|
|
<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>
|
|
<executions>
|
|
<execution>
|
|
<phase>deploy</phase>
|
|
<goals>
|
|
<goal>site</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<message>Maven artifacts for ${project.version}</message>
|
|
<noJekyll>true</noJekyll>
|
|
<outputDirectory>${project.build.directory}/mvn-repo</outputDirectory>
|
|
<branch>refs/heads/mvn-repo</branch>
|
|
<includes>
|
|
<include>**/*</include>
|
|
</includes>
|
|
<merge>true</merge>
|
|
<repositoryName>mustangproject</repositoryName>
|
|
<repositoryOwner>ZUGFeRD</repositoryOwner>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>2.4.3</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifactSet>
|
|
<excludes />
|
|
</artifactSet>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<minimizeJar>true</minimizeJar>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.11</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>hamcrest-core</artifactId>
|
|
<groupId>org.hamcrest</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>internal.repo</id>
|
|
<name>Temporary Staging Repository</name>
|
|
<url>file://${project.build.directory}/mvn-repo</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
<properties>
|
|
<maven.compiler.compilerVersion>1.6</maven.compiler.compilerVersion>
|
|
<github.global.server>github</github.global.server>
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
</project>
|
|
|