al3x / scala-build forked from robey/scala-build

ant/ivy build scripts to automate building scala projects

This URL has Read+Write access

al3x (author)
Sat Jul 04 10:56:22 -0700 2009
commit  a2e17efff73313974134cf5449085dfd89fc593d
tree    ab27af3dc083c27794ef2c28cf31489fee892dc3
parent  7f7b62760bc79afdb00bddebe45305aa22b16bcd
scala-build / build.xml
100644 21 lines (17 sloc) 0.794 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<!-- CONFIG: change example and description to fit your project -->
<project name="echod" default="package" xmlns:ivy="antlib:org.apache.ivy.ant">
  <description>sample project</description>
 
  <!-- override creation of a jar with a version number in the name -->
  <property name="dist.name" value="example" />
  <property name="dist.build_name" value="true" />
 
  <property name="ivy.settings.file" value="${basedir}/ivy/ivysettings.xml" />
  <import file="${basedir}/ant/bootstrap.xml" />
 
  <property name="install.dir" location="/opt/local/example" />
  <target name="install" depends="package">
    <mkdir dir="${install.dir}" />
    <copy todir="${install.dir}">
      <fileset dir="${dist.dir}" includes="**" />
    </copy>
  </target>
</project>