aboutsummaryrefslogtreecommitdiff
path: root/pdf-as-release/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pdf-as-release/pom.xml')
-rw-r--r--pdf-as-release/pom.xml66
1 files changed, 66 insertions, 0 deletions
diff --git a/pdf-as-release/pom.xml b/pdf-as-release/pom.xml
new file mode 100644
index 0000000..7892ba4
--- /dev/null
+++ b/pdf-as-release/pom.xml
@@ -0,0 +1,66 @@
+<?xml version="1.0"?>
+<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>
+
+ <parent>
+ <groupId>at.gv.egiz</groupId>
+ <artifactId>pdf-as</artifactId>
+ <version>3.3-SNAPSHOT</version>
+ </parent>
+
+ <packaging>pom</packaging>
+
+ <artifactId>pdf-as-release</artifactId>
+ <name>PDF-AS Release</name>
+ <description>Release zur Amtssignatur fuer elektronische Aktenfuehrung</description>
+
+ <build>
+
+ <plugins>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>make-assembly</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <descriptors>
+ <descriptor>src/main/assembly/release.xml</descriptor>
+ </descriptors>
+ <appendAssemblyId>false</appendAssemblyId>
+ </configuration>
+ </plugin>
+
+ </plugins>
+
+ </build>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>at.gv.egiz</groupId>
+ <artifactId>pdf-as-lib</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>at.gv.egiz</groupId>
+ <artifactId>pdf-as-web</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>at.gv.egiz</groupId>
+ <artifactId>pdf-as-cli</artifactId>
+ </dependency>
+
+ </dependencies>
+
+</project>