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 @@ ...@@ -85,8 +85,8 @@
</target> </target>
<target name="view.javadoc.local" description="view local package javadoc in web browser (Netbeans only)"> <target name="view.javadoc.local" description="view local package javadoc in web browser (Netbeans only)">
<echo message="view local javadoc"/> <echo message="view local javadoc in dist/javadoc subdirectory"/>
<nbbrowse file="javadoc/index.html" /> <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. --> <!-- TODO implementation-independent approach if possible, but note that other Ant approaches usually have to be customized for each OS. -->
</target> </target>
...@@ -224,12 +224,13 @@ ...@@ -224,12 +224,13 @@
<antcall target="jar-pdus-classes"/> <antcall target="jar-pdus-classes"/>
<antcall target="jar-pdus-source"/> <antcall target="jar-pdus-source"/>
<antcall target="jar-pdus-javadoc"/> <antcall target="jar-pdus-javadoc"/>
<antcall target="jar-full"/> <!--<antcall target="zip-full"/>-->
</target> </target>
<target name="jar-full" description="full set of everything, pdus and enumerations"> <target name="zip-full" description="full set of everything, pdus and enumerations">
<delete file="dist/open-dis7-full.jar"/> <!-- TODO README -->
<jar destfile="dist/open-dis7-full.jar" <delete file="dist/open-dis7-full.zip"/>
<zip destfile="dist/open-dis7-full.zip"
update="true" update="true"
basedir="." basedir="."
zip64Mode="always"> zip64Mode="always">
...@@ -262,6 +263,7 @@ ...@@ -262,6 +263,7 @@
</fileset> </fileset>
--> -->
<!-- https://docs.oracle.com/javase/tutorial/deployment/jar/manifestindex.html --> <!-- https://docs.oracle.com/javase/tutorial/deployment/jar/manifestindex.html -->
<!--
<manifest> <manifest>
<attribute name="description" value="Full set of files for ${manifest.name}"/> <attribute name="description" value="Full set of files for ${manifest.name}"/>
<attribute name="Built-By" value="${Built-By}"/> <attribute name="Built-By" value="${Built-By}"/>
...@@ -276,7 +278,8 @@ ...@@ -276,7 +278,8 @@
<attribute name="Sealed" value="true"/> <attribute name="Sealed" value="true"/>
</section> </section>
</manifest> </manifest>
</jar> -->
</zip>
</target> </target>
<target name="jar-pdus-javadoc" description="full set of javadoc"> <!-- avoid performing multiple times: depends="javadoc" --> <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