aboutsummaryrefslogtreecommitdiff
path: root/pdf-as-cli/pom.xml
diff options
context:
space:
mode:
authortknall <tknall@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c>2013-01-10 16:24:59 +0000
committertknall <tknall@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c>2013-01-10 16:24:59 +0000
commitf9850d02d8559b7e7f3555d0e2c7cfe746257958 (patch)
treef6b145a088350478cff52d78fb13660cea7a422d /pdf-as-cli/pom.xml
parent535a04fa05f739ec16dd81666e3b0f82dfbd442d (diff)
downloadpdf-as-3-f9850d02d8559b7e7f3555d0e2c7cfe746257958.tar.gz
pdf-as-3-f9850d02d8559b7e7f3555d0e2c7cfe746257958.tar.bz2
pdf-as-3-f9850d02d8559b7e7f3555d0e2c7cfe746257958.zip
Eclipse config files removed.
Maven repository updated (and redundant repository removed). Multi-Module project created for pdf-as-lib, pdf-as-web. Maven assemblies updated. Snapshot releases (zxing) replaced. git-svn-id: https://joinup.ec.europa.eu/svn/pdf-as/pdf-as/trunk@927 7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c
Diffstat (limited to 'pdf-as-cli/pom.xml')
-rw-r--r--pdf-as-cli/pom.xml57
1 files changed, 57 insertions, 0 deletions
diff --git a/pdf-as-cli/pom.xml b/pdf-as-cli/pom.xml
new file mode 100644
index 0000000..a2a89c4
--- /dev/null
+++ b/pdf-as-cli/pom.xml
@@ -0,0 +1,57 @@
+<?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-cli</artifactId>
+ <name>PDF-AS CLI</name>
+ <description>Commandline Distribution zur Amtssignatur fuer elektronische Aktenfuehrung</description>
+
+ <build>
+
+ <finalName>${project.artifactId}-${project.version}</finalName>
+
+ <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/cli.xml</descriptor>
+ </descriptors>
+ <appendAssemblyId>false</appendAssemblyId>
+ </configuration>
+ </plugin>
+
+ </plugins>
+
+ </build>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>at.gv.egiz</groupId>
+ <artifactId>pdf-as-lib</artifactId>
+ </dependency>
+
+ </dependencies>
+
+</project>