diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2019-12-10 08:52:24 +0100 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2019-12-10 08:52:24 +0100 |
commit | cf01ed53c99960c88483ae9a000b2284421f281b (patch) | |
tree | 894b10916bc3ca5671267291ea2405d06476e61a /connector/pom.xml | |
parent | 6e2eef88e7f28a8589faf0ebc8027ef4af334f30 (diff) | |
download | National_eIDAS_Gateway-cf01ed53c99960c88483ae9a000b2284421f281b.tar.gz National_eIDAS_Gateway-cf01ed53c99960c88483ae9a000b2284421f281b.tar.bz2 National_eIDAS_Gateway-cf01ed53c99960c88483ae9a000b2284421f281b.zip |
add assembly plugin to build release packages
Diffstat (limited to 'connector/pom.xml')
-rw-r--r-- | connector/pom.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/connector/pom.xml b/connector/pom.xml index af1d5947..52addf4d 100644 --- a/connector/pom.xml +++ b/connector/pom.xml @@ -134,6 +134,28 @@ </dependencies> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <configuration> + <descriptors> + <descriptor>src/assembly/assembly_dir.xml</descriptor> + <descriptor>src/assembly/assembly_zip.xml</descriptor> + </descriptors> + <finalName>${project.artifactId}-${project.version}</finalName> + <outputDirectory>${project.parent.build.directory}</outputDirectory> + </configuration> + <executions> + <execution> + <id>make-assembly</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> </build> </project> |