Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.codehaus.izpack</groupId>
  3. <artifactId>izpack-maven-plugin</artifactId>
  4. <version>1.0-alpha-5</version>
  5. <dependencies>
  6. <dependency>
  7. <groupId>org.codehaus.izpack</groupId>
  8. <artifactId>izpack-standalone-compiler</artifactId>
  9. <version>${izpack-standalone.version}</version>
  10. </dependency>
  11. </dependencies>
  12. <configuration>
  13. <encoding>${project.build.sourceEncoding}</encoding>
  14. <descriptorEncoding>UTF-8</descriptorEncoding>
  15. <izpackBasedir>${staging.dir}</izpackBasedir>
  16. <customPanelDirectory>${staging.dir}</customPanelDirectory>
  17. <installerFile>${net.path.output}/${project.artifactId}-${project.version}.${prefix.revision}-install.jar</installerFile>
  18. </configuration>
  19. <executions>
  20. <execution>
  21. <id>standard-installer</id>
  22. <phase>package</phase>
  23. <goals>
  24. <goal>izpack</goal>
  25. </goals>
  26. <configuration>
  27. <encoding>UTF-8</encoding>
  28. </configuration>
  29. </execution>
  30. </executions>
  31. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement