CDC Project Properties Dialog Box: Packaging
You open the
CDC Project Properties dialog box by right-clicking any
CDC project node and choosing Properties.
In the Packaging options page, you can set the following properties:
- JAR File. The name of the distribution jar file. This is automatically generated by the IDE and
cannot be changed from this panel. See the notes section below for more information.
- Exclude from JAR file. Specifies which types of files should be excluded from the distribution jar. A
comma separated list of regular expressions is used as a filter. For example **/*.java, **/*.form will
exclude all .java and .form files from the distribution jar file.
- Compress JAR file. Specifies whether the distribution jar file should be compressed.
Notes:
- To specify a manifest file in your JAR file, open your project's project.properties
file and enter the name of the manifest file in the manifest.file
property. The file name must be specified relative to the project's build.xml
file.
- To change the JAR name and location, open the project.properties file and
edit the dist.jar property.
- To disable building of JAR files for a project, open build.xml, override
the jar target and remove all the dependencies from the target, like
so:
<target name="jar" />
Legal Notices