IZPack with Gradle
By : Thanh Huynh
Date : March 29 2020, 07:55 AM
|
izpack install jar works only in a folder starting with "izpack"
By : doctuary
Date : March 29 2020, 07:55 AM
around this issue I found a workaround for this issue. (Thank you again Raghuram to show me the way) I use the 1.0-alpha-5 version code :
<plugin>
<groupId>org.codehaus.izpack</groupId>
<artifactId>izpack-maven-plugin</artifactId>
<version>1.0-alpha-5</version>
</plugin>
<plugin>
<groupId>org.codehaus.izpack</groupId>
<artifactId>izpack-maven-plugin</artifactId>
<configuration>
<!-- For 1.0-alpha-5 version -->
<installerFile>${basedir}/target/${project.name}</installerFile>
<izpackBasedir>${basedir}/izpack</izpackBasedir>
</configuration>
<executions>
<execution>
<id>izpack</id>
<phase>package</phase>
<goals>
<goal>izpack</goal>
</goals>
</execution>
</executions>
</plugin>
|
Can I install a file using Izpack 5 without it being part of the install.jar built by izpack
By : JeyaBalaji
Date : March 29 2020, 07:55 AM
I think the issue was by ths following , You want to do a "loose" pack for the JVM. A loose pack doesn't need to contain the files it installs, so it could copy the file from the zip into place, instead of using one embedded in the jar. code :
<pack id="java" name="java" required="yes" preselected="yes" loose="true">
...
<executable ...>
<!-- something appropriate to install java -->
</executable>
</pack>
|
IZpack - how to install JRE using IZPack?
By : arthur page
Date : March 29 2020, 07:55 AM
wish help you to fix your issue Not with IZpack on its own, but you can wrap up an IZpack installer JAR as a .exe using a tool such as Launch4J, and when users run the .exe it will prompt them to download a JRE if there is no suitable one installed already.
|
How to use gradle-izpack plugin with izpack 5.0.0
By : Jakub
Date : March 29 2020, 07:55 AM
Hope that helps I just ran into this. I ended up having to call the compiler directly.
|