mirror of https://github.com/dspinellis/UMLGraph
Fix includeantruntime warning
Simple set its value to false. See http://stackoverflow.com/questions/5103384/ant-warning-includeantruntime-was-not-set
This commit is contained in:
parent
da4d335f38
commit
7fc14a491e
|
|
@ -90,7 +90,8 @@ class Version { public static String VERSION = "${VERSION}";}
|
|||
|
||||
<target name="compile" depends="init,version"
|
||||
description="compile the source, build library " >
|
||||
<javac srcdir="${src}" destdir="${build}" debug="true" deprecation="true" >
|
||||
<javac srcdir="${src}" destdir="${build}" debug="true"
|
||||
deprecation="true" includeantruntime="false" >
|
||||
<compilerarg value="-Xlint"/>
|
||||
</javac>
|
||||
<jar basedir="${build}" destfile="${lib}/UmlGraph.jar" includes="org/umlgraph/doclet/*.class">
|
||||
|
|
|
|||
Loading…
Reference in New Issue