aboutsummaryrefslogtreecommitdiff
path: root/pdf-as-release
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-release
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-release')
-rw-r--r--pdf-as-release/pom.xml66
-rw-r--r--pdf-as-release/src/main/assembly/release.xml43
2 files changed, 109 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>
diff --git a/pdf-as-release/src/main/assembly/release.xml b/pdf-as-release/src/main/assembly/release.xml
new file mode 100644
index 0000000..cc63cca
--- /dev/null
+++ b/pdf-as-release/src/main/assembly/release.xml
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- http://maven.apache.org/plugins/maven-assembly-plugin/assembly.html -->
+<assembly
+ xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
+
+ <id>release</id>
+
+ <formats>
+ <format>dir</format>
+ </formats>
+
+ <includeBaseDirectory>false</includeBaseDirectory>
+
+ <moduleSets>
+ <moduleSet>
+ <useAllReactorProjects>true</useAllReactorProjects>
+ <includes>
+ <include>at.gv.egiz:pdf-as-lib</include>
+ <include>at.gv.egiz:pdf-as-web</include>
+ </includes>
+ <binaries>
+ <includeDependencies>false</includeDependencies>
+ <outputDirectory />
+ <unpack>false</unpack>
+ </binaries>
+ </moduleSet>
+ </moduleSets>
+
+ <fileSets>
+
+ <fileSet>
+ <directory>../pdf-as-cli/target</directory>
+ <includes>
+ <include>*.zip</include>
+ </includes>
+ <outputDirectory />
+ </fileSet>
+
+ </fileSets>
+
+</assembly>