forked from ZUGFeRD/mustangproject
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed pdfa3-sample submodule, made mustang main (and only) module, …
…corrected the POM, released 1.4.0 via maven, updated the developer documentation, updated toecount to 0.0.9 to use mustang 1.4.0 via maven repo
- Loading branch information
Showing
103 changed files
with
395 additions
and
1,102 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
<?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>[email protected]</email> | ||
<roles> | ||
<role>architect</role> | ||
<role>developer</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<name>Alexander Schmidt</name> | ||
<email>[email protected]</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> | ||
|
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.