Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NetworkedGraphicsMV3500
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Savage
NetworkedGraphicsMV3500
Commits
4f56e835
Commit
4f56e835
authored
3 years ago
by
Brutzman, Don
Browse files
Options
Downloads
Patches
Plain Diff
jar-full
parent
100b8578
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
build.xml
+34
-1
34 additions, 1 deletion
build.xml
with
34 additions
and
1 deletion
build.xml
+
34
−
1
View file @
4f56e835
...
...
@@ -226,6 +226,7 @@
<antcall
target=
"jar-pdus-classes"
/>
<antcall
target=
"jar-pdus-source"
/>
<antcall
target=
"jar-pdus-javadoc"
/>
<antcall
target=
"jar-full"
/>
<!--<antcall target="zip-full"/>-->
</target>
...
...
@@ -343,7 +344,39 @@
<attribute
name=
"Sealed"
value=
"true"
/>
</section>
</manifest>
</jar>
</jar>
</target>
<target
name=
"jar-full"
depends=
"compile"
description=
"merges all dis7 subpackage assets"
>
<delete
file=
"dist/open-dis7-full.jar"
verbose=
"true"
/>
<!-- https://stackoverflow.com/questions/515428/clean-way-to-combine-multiple-jars-preferably-using-ant -->
<jar
destfile=
"dist/open-dis7-full.jar"
update=
"true"
zip64Mode=
"always"
>
<zipgroupfileset
dir=
"dist"
>
<include
name=
"open-dis7-*.jar"
/>
<!--<exclude name="open-dis7-source.jar"/> only about 30MB -->
<exclude
name=
"open-dis7-full.jar"
/>
<!-- not self -->
</zipgroupfileset>
<!-- https://docs.oracle.com/javase/tutorial/deployment/jar/manifestindex.html -->
<manifest>
<attribute
name=
"description"
value=
"Full set of assets for ${manifest.name}"
/>
<attribute
name=
"Built-By"
value=
"${Built-By}"
/>
<attribute
name=
"Specification-Title"
value=
"${Specification-Title}"
/>
<attribute
name=
"Specification-Version"
value=
"${Specification-Version}"
/>
<attribute
name=
"Specification-Vendor"
value=
"${Specification-Vendor}"
/>
<attribute
name=
"Implementation-Title"
value=
"${Implementation-Title}"
/>
<attribute
name=
"Implementation-Version"
value=
"${Implementation-Version}"
/>
<attribute
name=
"Implementation-Vendor"
value=
"${Implementation-Vendor}"
/>
<section
name=
"edu/nps/moves/dis7"
>
<attribute
name=
"Sealed"
value=
"true"
/>
</section>
<section
name=
"edu/nps/moves/spatial"
>
<attribute
name=
"Sealed"
value=
"true"
/>
</section>
</manifest>
</jar>
</target>
<target
name=
"jar-pdus-classes"
depends=
"compile"
description=
"merges all dis7 subpackage classes except for enumerations"
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment