Compile openfire with Eclipse, where Ant adds bulid.xml times wrong
Taskdef class Com.install4j.install4jtask cannot found
The reason is that the install4j path of the Bulid.xml Installer.install4j.home is incorrect
Solve:
1. Download and install install4j
Page http://download.csdn.net/detail/wjx5858598/2861075
Address http://dldx.csdn.net/fd.php?i=854628610758033&s=4698e847820b00451d5034cf5e433f5e
2. Modify Bulid.xml
I am here to install install4j under D:\Program files\install4j.
Such a piece of code
<property file= "${basedir}/build/build.properties"/>
Change it to
<property file= "${basedir}/build/build.properties.template"/>
Modify the install4j path at the same time:
<property name= "Installer.install4j.home" value= "/home/j2ee-bamboo/install4j.4.0.5"/>
Change it to its own install4j installation path:
<property name= "Installer.install4j.home" value= "D:\Program files\install4j"/>
Reference:http://resources.ej-technologies.com/install4j/help/doc/indexredirect.html?http&&& Resources.ej-technologies.com/install4j/help/doc/cli/ant.html
Http://www.verydemo.com/demo_c167_i4909.html