30日間の無料評価版をお試しいただけます。

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Anchor
top
top

Table of Contents
classcontents

Overview

Styleclass
ClasstopLink

...

Adding Files to the Installer

The Yellowfin installer is a java archive (.jar) file. This is essentially a zip-compatible file, with some special properties. The Java Development Kit comes with a command-line tool for creating and extracting these files, called jar (jar.exe on Windows).

...

To extract the contents of the installer archive:

Code Block
none
none

jar xvf /path/to/yellowfin-yyyymmdd-full.jar

This will create the expanded file structure of the installer archive in the current directory. You should not modify any of the extracted files. Add any files you need to in the correct location under this directory. The custom properties file must be named custom.properties, and must be in the top-level directory. Any other files referenced as resources in the custom properties file will be specified using a path relative to this directory. After any additional files are added, re-create the archive:

Code Block
none
none

jar cvmf META-INF/MANIFEST.MF /path/to/yellowfin-modified.jar

...

See http://launch4j.sourceforge.net/ for more information.

 

horizontalrule
Styleclass
ClasstopLink

...

Adding Files to the Installer

 

 

...