Hi there,
i've tried to integrate IzPack in my build environment but when i
execute thze ant task: make_install_jar i get the following:
LzPack:
[java] .:: IzPack - Version 3.11.0 ::.
[java] < compiler specifications version: 1.0 >
[java] - Copyright (c) 2001-2008 Julien Ponge
[java] - Visit http://izpack.org/ for the latest releases
[java] - Released under the terms of the Apache Software License
version 2.0.
[java] -> Fatal error :
[java] bad argument
[java] java.lang.Exception: bad argument
[java] at
com.izforge.izpack.compiler.CompilerConfig.main(CompilerConfig.java:2208)
[java] at
com.izforge.izpack.compiler.Compiler.main(Compiler.java:709)
[java] (tip : use -? to get the commmand line parameters)
The command line help tells me, that i should use -h instead of -HOME
but this doesn't work either.
Here is my test ant task:
<target name="LzPack" depends="init">
<java jar="${izpack.home.dir}/lib/compiler.jar"
fork="true"
failonerror="true"
maxmemory="128m"
>
<arg value="-HOME"/>
<arg value="${izpack.home.dir}"/>
<arg value="${basedir}/build/${izpack.config.file}"/>
<arg value="-b"/>
<arg value="${basedir}/build"/>
<arg value="-k"/>
<arg value="standard-kunststoff"/>
<arg value="-o"/>
<arg
value="${basedir}/../squirrel-sql-dist/${name}-${version}-install.jar"/>
<classpath>
<pathelement
location="${izpack.home.dir}/lib/compiler.jar"/>
<pathelement path="${java.class.path}"/>
</classpath>
</java>
</target>
Does anybody of you guys have a hint for me whats wrong?
I'm just want to make shure, that my new plugin is working in a new
distribution of squirrel.
Thanx for your help,
Dieter.
|