-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.xml
31 lines (25 loc) · 1.06 KB
/
build.xml
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
26
27
28
29
30
31
<?xml version="1.0"?>
<project name="CyREST App - Cytoscape 3" basedir="." default="install">
<!--
This file should be created by each user when he/she needs to override particular values.
Do NOT place it under version control.
-->
<property file="local.properties"/>
<!--
This file should be placed under version control.
-->
<property file="default.properties"/>
<property environment="env"/>
<property name="build.dir" value="target"/>
<property name="cytoscape.app.dir" value="${cytoscape.home}/apps/"/>
<target name="install">
<copy todir="${cytoscape.app.dir}" overwrite="true">
<fileset dir="${build.dir}" includes="*.jar"/>
</copy>
</target>
<target name="info">
<echo>*******************************************************************</echo>
<echo>* This script installs the CyREST Cytoscape app *</echo>
<echo>*******************************************************************</echo>
</target>
</project>