diff options
author | tknall <tknall@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c> | 2013-01-10 16:24:59 +0000 |
---|---|---|
committer | tknall <tknall@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c> | 2013-01-10 16:24:59 +0000 |
commit | f9850d02d8559b7e7f3555d0e2c7cfe746257958 (patch) | |
tree | f6b145a088350478cff52d78fb13660cea7a422d /pdf-as-release/pom.xml | |
parent | 535a04fa05f739ec16dd81666e3b0f82dfbd442d (diff) | |
download | pdf-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-release/pom.xml')
-rw-r--r-- | pdf-as-release/pom.xml | 66 |
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> |