mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-05 21:17:52 +00:00
75 lines
2.4 KiB
XML
75 lines
2.4 KiB
XML
<!--
|
|
========================================================================
|
|
PlantUML : a free UML diagram generator
|
|
========================================================================
|
|
(C) Copyright 2009-2017, Arnaud Roques
|
|
|
|
Project Info: http://plantuml.sourceforge.net
|
|
|
|
This file is part of PlantUML.
|
|
|
|
Original Author: Arnaud Roques
|
|
Script Author: Ilya V. Paramonov
|
|
|
|
-->
|
|
<project name="PlantUML" default="dist" basedir=".">
|
|
<description>
|
|
PlantUML Build File
|
|
</description>
|
|
|
|
<target name="compile">
|
|
<delete dir="build" />
|
|
<mkdir dir="build" />
|
|
<javac target="1.6" srcdir="src" destdir="build" debug="on" />
|
|
<copy file="src/net/sourceforge/plantuml/version/logo.png"
|
|
todir="build/net/sourceforge/plantuml/version" />
|
|
<copy file="src/net/sourceforge/plantuml/version/favicon.png"
|
|
todir="build/net/sourceforge/plantuml/version" />
|
|
<copy todir="build/net/sourceforge/plantuml/version">
|
|
<fileset dir="src/net/sourceforge/plantuml/version">
|
|
<include name="*.png" />
|
|
</fileset>
|
|
</copy>
|
|
<copy todir="build/net/sourceforge/plantuml/openiconic/data">
|
|
<fileset dir="src/net/sourceforge/plantuml/openiconic/data">
|
|
<include name="*.txt" />
|
|
<include name="*.svg" />
|
|
</fileset>
|
|
</copy>
|
|
<copy todir="build/net/sourceforge/plantuml/fun">
|
|
<fileset dir="src/net/sourceforge/plantuml/fun">
|
|
<include name="*.png" />
|
|
</fileset>
|
|
</copy>
|
|
<copy todir="build/sprites/archimate">
|
|
<fileset dir="src/sprites/archimate">
|
|
<include name="*.png" />
|
|
</fileset>
|
|
</copy>
|
|
<copy todir="build/net/sourceforge/plantuml/dedication">
|
|
<fileset dir="src/net/sourceforge/plantuml/dedication">
|
|
<include name="*.png" />
|
|
</fileset>
|
|
</copy>
|
|
<copy todir="build/net/sourceforge/plantuml/math">
|
|
<fileset dir="src/net/sourceforge/plantuml/math">
|
|
<include name="*.js" />
|
|
</fileset>
|
|
</copy>
|
|
</target>
|
|
|
|
<target name="dist" depends="compile">
|
|
<delete dir="dist" />
|
|
<mkdir dir="dist" />
|
|
<jar jarfile="plantuml.jar" basedir="build">
|
|
<manifest>
|
|
<attribute name="Main-Class" value="net.sourceforge.plantuml.Run" />
|
|
<attribute name="Class-Path" value="batik-all-1.7.jar jlatexmath-minimal-1.0.3.jar jlm_cyrillic.jar jlm_greek.jar vizjs.jar j2v8_win32_x86_64-3.1.6.jar j2v8_linux_x86_64-3.1.6.jar j2v8_macosx_x86_64-3.1.6.jar" />
|
|
</manifest>
|
|
</jar>
|
|
<delete dir="build" />
|
|
<delete dir="dist" />
|
|
</target>
|
|
|
|
</project>
|