~ubuntu-branches/ubuntu/wily/apgdiff/wily

« back to all changes in this revision

Viewing changes to build.xml

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg
  • Date: 2009-12-02 11:11:33 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20091202111133-k5wrh3zb2pzmbv8c
Tags: 1.4-1
* New upstream version. (Without changelog, I am afraid.)
* Test suite still not enabled as it needs network access. (The junit
  version in Debian needs upgrading.)
* Optimize rules files a bit so debhelper doesn't clean twice, and quilt's
  patch target doesn't prevent build-stamp from working.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<project name="apgdiff" default="jar" basedir=".">
2
2
    <property name="name" value="Another PostgreSQL Diff Tool"/>
3
 
    <property name="version" value="1.3"/>
 
3
    <property name="version" value="1.4"/>
4
4
    <property name="build" value="build"/>
5
5
    <property name="dist" value="dist"/>
6
6
    <property name="build.output" value="${build}/classes"/>
93
93
    <target name="get-deps" description="Download all dependencies"
94
94
            unless="noget">
95
95
        <mkdir dir="${lib}"/>
96
 
        <get src="http://www.ibiblio.org/maven/junit/jars/junit-4.4.jar"
 
96
        <get src="http://www.ibiblio.org/maven/junit/jars/junit-4.7.jar"
97
97
             dest="${lib}/junit.jar"/>
98
 
        <get src="http://www.ibiblio.org/maven/org.hamcrest/jars/hamcrest-all-1.0.jar"
 
98
        <get src="http://www.ibiblio.org/maven/org.hamcrest/jars/hamcrest-all-1.1.jar"
99
99
             dest="${lib}/hamcrest-all.jar"/>
100
100
    </target>
101
101