diff options
author | Aidan Skinner <aidan@apache.org> | 2008-12-12 13:57:42 +0000 |
---|---|---|
committer | Aidan Skinner <aidan@apache.org> | 2008-12-12 13:57:42 +0000 |
commit | 3ff85ea13d228f4f548c98d0c72219ec5faff552 (patch) | |
tree | 86aa41311487c6ee542ccfb3c11652ec51b3e19a | |
parent | c8ce51a29f249be7a4d738a2f3592c1d89fae66d (diff) | |
download | qpid-python-3ff85ea13d228f4f548c98d0c72219ec5faff552.tar.gz |
QPID-1282: move dependency on build target up a few levels
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@726010 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | java/build.xml | 2 | ||||
-rw-r--r-- | java/module.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/java/build.xml b/java/build.xml index 9d405c7e4c..cea9b34b0e 100644 --- a/java/build.xml +++ b/java/build.xml @@ -216,7 +216,7 @@ <iterate target="instrument"/> </target> - <target name="cover-test" description="run tests and generate coverage information"> + <target name="cover-test" description="run tests and generate coverage information" depends="build"> <iterate target="cover-test" modules="broker client common"/> </target> diff --git a/java/module.xml b/java/module.xml index 420fe363ce..fd3c44c752 100644 --- a/java/module.xml +++ b/java/module.xml @@ -467,7 +467,7 @@ <delete dir="${module.instrumented}"/> </target> - <target name="instrument" depends="build"> + <target name="instrument"> <cobertura-instrument todir="${module.instrumented}" datafile="${cobertura.datafile}"> <fileset dir="${module.classes}"> |