summaryrefslogtreecommitdiff
path: root/qpid/java/module.xml
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2008-07-15 11:36:41 +0000
committerMartin Ritchie <ritchiem@apache.org>2008-07-15 11:36:41 +0000
commit007c92a1319bedb70194b2955898a37f3c2292cc (patch)
tree598a3df60f1f0ecd15f4f8e93120d7e5ac578fc3 /qpid/java/module.xml
parentb633025863a1040d71d3834696aeb5856a8da58b (diff)
downloadqpid-python-007c92a1319bedb70194b2955898a37f3c2292cc.tar.gz
QPID-1176 : Updated Tasks and gentools build to use the java.source and java.target values. Added echo statements to show the targeted build Updated other info echo statements to be an info level so they will not print with -q.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@676884 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/module.xml')
-rw-r--r--qpid/java/module.xml11
1 files changed, 9 insertions, 2 deletions
diff --git a/qpid/java/module.xml b/qpid/java/module.xml
index 42385e3f53..df0572a48b 100644
--- a/qpid/java/module.xml
+++ b/qpid/java/module.xml
@@ -26,7 +26,7 @@
<globmapper from="${project.root}${file.separator}*" to="*"/>
</map>
- <echo message="Running ant for module : ${module}"/>
+ <echo message="Running ant for module : ${module}" level="info"/>
<property file="${project.root}/build.deps"/>
@@ -142,9 +142,13 @@
<target name="precompile"/>
<target name="compile" depends="prepare,precompile" description="compile sources">
- <javac source="${java.source}" target="${java.target}"
+
+ <echo message="Targeting : ${java.target}" level="info"/>
+
+ <javac source="${java.source}" target="${java.target}"
destdir="${module.classes}" debug="on"
deprecation="${javac.deprecation}">
+ <compilerarg line="${javac.compiler.args}"/>
<src refid="module.src.path"/>
<classpath refid="module.class.path"/>
</javac>
@@ -199,10 +203,13 @@
<delete file="${module.failed}"/>
+ <echo message="Using config:${config}" level="info"/>
<junit fork="${test.fork}" maxmemory="${test.mem}" reloading="no"
haltonfailure="${haltonfailure}" haltonerror="${haltonerror}"
failureproperty="test.failures" printsummary="on" timeout="600000" >
+ <jvmarg value="${jvm.args}"/>
+
<sysproperty key="amqj.logging.level" value="${amqj.logging.level}"/>
<sysproperty key="root.logging.level" value="${root.logging.level}"/>
<sysproperty key="log4j.configuration" value="${log4j.configuration}"/>