diff options
Diffstat (limited to 'pdf-as-release')
-rw-r--r-- | pdf-as-release/pom.xml | 66 | ||||
-rw-r--r-- | pdf-as-release/src/main/assembly/release.xml | 43 |
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>
|