-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
25 lines (23 loc) · 876 Bytes
/
build.xml
File metadata and controls
25 lines (23 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<project name="RGB_to_Grayscale" default="" basedir=".">
<description>
RGB_to_Grayscale build file
</description>
<property name="src" location="src" />
<property name="build" location="bin" />
<property name="dist" location="dist" />
<property name="pluginsDir" location="$basedir/../../ImageJ/plugins/" />
<property name="user.name" value="BV Gurppe B" />
<target name="main" depends="compress" description="Main target">
<echo>Building the .jar file...</echo>
</target>
<target name="compress" depends="" description="generate the distribution">
<jar jarfile="RGBtoGrayscale_.jar">
<fileset dir="." includes="plugins.config" />
<fileset dir="${build}" includes="**/*.*" />
<manifest>
<attribute name="Built-By" value="${user.name}"/>
</manifest>
</jar>
<copy file="RGBtoGrayscale_.jar" toDir="${pluginsDir}" />
</target>
</project>