88 lines
2.4 KiB
XML
88 lines
2.4 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>org.mustangproject.ZUGFeRD</groupId>
|
|
<artifactId>toecount</artifactId>
|
|
<version>0.0.5-SNAPSHOT</version>
|
|
<name>ZUGFeRD PDF checker</name>
|
|
<description>Shows statistics on how many PDFs in a directory are ZUGFeRD-Compliant</description>
|
|
<repositories>
|
|
<repository>
|
|
<id>mustang-mvn-repo</id>
|
|
<url>https://raw.github.com/Rayman2200/PDFA3/mvn-repo/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>sonatype-oss-public</id>
|
|
<url>https://oss.sonatype.org/content/groups/public/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.mustangproject.ZUGFeRD</groupId>
|
|
<artifactId>mustang</artifactId>
|
|
<version>1.2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
<artifactId>pdfbox</artifactId>
|
|
<version>1.8.8</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sanityinc</groupId>
|
|
<artifactId>jargs</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>toecount.Toecount</mainClass>
|
|
|
|
|
|
</manifest>
|
|
</archive>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<addClasspath>true</addClasspath>
|
|
<mainClass>toecount.Toecount</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
<!-- http://stackoverflow.com/questions/574594/how-can-i-create-an-executable-jar-with-dependencies-using-maven
|
|
mvn clean compile assembly:single -->
|
|
<!-- or whatever version you use -->
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
</build>
|
|
</project> |