Skip to content

Commit

Permalink
added test-run to the build script
Browse files Browse the repository at this point in the history
  • Loading branch information
r00tat committed Jul 14, 2017
1 parent b27b609 commit 56b30f2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@
<javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}" includeantruntime="false">
<classpath>
<pathelement location="${josm}"/>
<fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
<include name="log4j.jar"/>
<fileset refid="plugin.requires.jars">
</fileset>
<fileset dir="${lib.base}">
<include name="*-custom.jar"/>
Expand Down Expand Up @@ -76,7 +75,10 @@
</delete>
</target>

<target name="installPlugin" depends="clean, dist, install">
<target name="install-plugin" depends="clean, dist, install">
<echo>Installed areaselector plugin</echo>
</target>

<target name="test-run" depends="install-plugin, runjosm">
</target>
</project>

0 comments on commit 56b30f2

Please sign in to comment.