Skip to content
Snippets Groups Projects
Commit 064dbf27 authored by Brutzman, Don's avatar Brutzman, Don
Browse files

zip-full target under development, replacing jar-full

parent 1c023bf3
No related branches found
No related tags found
No related merge requests found
......@@ -85,8 +85,8 @@
</target>
<target name="view.javadoc.local" description="view local package javadoc in web browser (Netbeans only)">
<echo message="view local javadoc"/>
<nbbrowse file="javadoc/index.html" />
<echo message="view local javadoc in dist/javadoc subdirectory"/>
<nbbrowse file="dist/javadoc/index.html" />
<!-- TODO implementation-independent approach if possible, but note that other Ant approaches usually have to be customized for each OS. -->
</target>
......@@ -224,12 +224,13 @@
<antcall target="jar-pdus-classes"/>
<antcall target="jar-pdus-source"/>
<antcall target="jar-pdus-javadoc"/>
<antcall target="jar-full"/>
<!--<antcall target="zip-full"/>-->
</target>
<target name="jar-full" description="full set of everything, pdus and enumerations">
<delete file="dist/open-dis7-full.jar"/>
<jar destfile="dist/open-dis7-full.jar"
<target name="zip-full" description="full set of everything, pdus and enumerations">
<!-- TODO README -->
<delete file="dist/open-dis7-full.zip"/>
<zip destfile="dist/open-dis7-full.zip"
update="true"
basedir="."
zip64Mode="always">
......@@ -262,6 +263,7 @@
</fileset>
-->
<!-- https://docs.oracle.com/javase/tutorial/deployment/jar/manifestindex.html -->
<!--
<manifest>
<attribute name="description" value="Full set of files for ${manifest.name}"/>
<attribute name="Built-By" value="${Built-By}"/>
......@@ -276,7 +278,8 @@
<attribute name="Sealed" value="true"/>
</section>
</manifest>
</jar>
-->
</zip>
</target>
<target name="jar-pdus-javadoc" description="full set of javadoc"> <!-- avoid performing multiple times: depends="javadoc" -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment