diff options
author | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-05-12 12:08:45 +0200 |
---|---|---|
committer | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2022-05-12 12:08:45 +0200 |
commit | a4adbdd4fba35704234e63ff067cfe9986b99296 (patch) | |
tree | 1ed74a999e731a82fa467e93ffa00c87424c4124 /pdf-over-gui/pom.xml | |
parent | d672415801f5e77c68ce44c90942b205b983e578 (diff) | |
download | pdf-over-a4adbdd4fba35704234e63ff067cfe9986b99296.tar.gz pdf-over-a4adbdd4fba35704234e63ff067cfe9986b99296.tar.bz2 pdf-over-a4adbdd4fba35704234e63ff067cfe9986b99296.zip |
add windows installer resources to package
Diffstat (limited to 'pdf-over-gui/pom.xml')
-rw-r--r-- | pdf-over-gui/pom.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/pdf-over-gui/pom.xml b/pdf-over-gui/pom.xml index 591b6b2b..241d5996 100644 --- a/pdf-over-gui/pom.xml +++ b/pdf-over-gui/pom.xml @@ -464,6 +464,7 @@ <directory>src/main/resources</directory> <excludes> <exclude>installer-mac/*</exclude> + <exclude>installer-windows/*</exclude> <exclude>izpack-linux/*</exclude> <exclude>scripts/*</exclude> <exclude>ReadMe.txt</exclude> @@ -600,6 +601,28 @@ <build> <plugins> <plugin> + <artifactId>maven-resources-plugin</artifactId> + <version>2.4.2</version> + <executions> + <execution> + <id>copy-windows-resources</id> + <phase>validate</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <encoding>UTF-8</encoding> + <outputDirectory>${pdfover-build.staging-dir}</outputDirectory> + <resources> + <resource> + <directory>src/main/resources/installer-windows</directory> + </resource> + </resources> + </configuration> + </execution> + </executions> + </plugin> + <plugin> <groupId>com.akathist.maven.plugins.launch4j</groupId> <artifactId>launch4j-maven-plugin</artifactId> <version>2.1.1</version> |