summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pdf-over-gui/pom.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/pdf-over-gui/pom.xml b/pdf-over-gui/pom.xml
index 94195e32..780dd43c 100644
--- a/pdf-over-gui/pom.xml
+++ b/pdf-over-gui/pom.xml
@@ -127,6 +127,7 @@
</configuration>
</execution>
<execution>
+ <!-- copy os-specific swt jars to izpack staging dir -->
<id>copy</id>
<phase>package</phase>
<goals>
@@ -158,6 +159,29 @@
</executions>
</plugin>
<plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>exec-maven-plugin</artifactId>
+ <version>1.2.1</version>
+ <executions>
+ <execution>
+ <phase>install</phase>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <!-- Add custom manifest entries to izpack installer jar -->
+ <executable>jar</executable>
+ <workingDirectory>${staging.dir}</workingDirectory>
+ <arguments>
+ <argument>-ufm</argument>
+ <argument>setup.jar</argument>
+ <argument>ManifestEntries.mf</argument>
+ </arguments>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jarsigner-plugin</artifactId>
<version>1.2</version>