Install4j

From Chorke Wiki
Revision as of 22:30, 23 March 2019 by Shahed (talk | contribs)
Jump to navigation Jump to search
# export ANT_HOME
# export INSTALL4J_HOME

export INSTALL4J_JAVA_HOME=$JRE_HOME
export PATH=$INSTALL4J_HOME/bin:$PATH

install4jc --help

Ant Build

<project name="hello" default="media">
  <property environment="env"/>
  <property name="install4jHomeDir" location="${env.INSTALL4J_HOME}"/>
  <fail message="Specify install4jHomeDir in build.xml" unless="install4jHomeDir"/>

  <target name="media">
    <taskdef name="install4j"
             classname="com.install4j.Install4JTask"
             classpath="${install4jHomeDir}/bin/ant.jar"/>

    <install4j projectfile="hello.install4j"/>
  </target>
</project>

Script

Service

References