Skip to content

Commit

Permalink
added jar, build.xml updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Miura authored and Miura committed Nov 19, 2010
1 parent 2e6e0ad commit eab69d4
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 22 deletions.
Binary file added ParticleTracker_.jar
Binary file not shown.
45 changes: 23 additions & 22 deletions build.xml
@@ -1,26 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="particletracker_" default="" basedir=".">
<description>emblTools 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="Kota Miura" ></property>
<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="ParticleTracker_.jar">
<fileset dir="." includes="plugins.config" />
<fileset dir="${build}" includes="**/*.*" ></fileset>
<manifest>
<attribute name="Built-By" value="${user.name}"/>
</manifest>
</jar>
<copy file="ParticleTracker_.jar" toDir="${pluginsDir}" />
</target>
<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="Kota Miura" >
</property>

<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="ParticleTracker_.jar">
<fileset dir="." includes="plugins.config" />
<fileset dir="./src/" includes="ParticleTracker_.java" />
<fileset dir="${build}" includes="**/*.*" ></fileset>
<manifest>
<attribute name="Built-By" value="${user.name}"/>
</manifest>
</jar>
<copy file="ParticleTracker_.jar" toDir="${pluginsDir}" />
</target>
</project>

0 comments on commit eab69d4

Please sign in to comment.