diff options
-rw-r--r-- | java/build.deps | 3 | ||||
-rw-r--r-- | java/systests/build.xml | 7 |
2 files changed, 7 insertions, 3 deletions
diff --git a/java/build.deps b/java/build.deps index 8acf1d8b4c..2f5390e3e3 100644 --- a/java/build.deps +++ b/java/build.deps @@ -33,9 +33,10 @@ client.libs=${common.libs} ${geronimo-jms} broker.libs=${common.libs} ${commons-cli} ${commons-logging} ${log4j} \ ${slf4j-log4j} ${xalan} ${felix.libs} + junit-toolkit.libs=${log4j} ${junit} test.libs=${slf4j-log4j} ${junit-toolkit.libs} -systests.libs=${client.libs} ${test.libs} +systests.libs=${client.libs} ${test.libs} ${broker.libs} perftests.libs=${systests.libs} integrationtests.libs=${systests.libs} diff --git a/java/systests/build.xml b/java/systests/build.xml index b84cb9fc32..db7f594421 100644 --- a/java/systests/build.xml +++ b/java/systests/build.xml @@ -1,8 +1,8 @@ <!-- - - Licensed to the Apache Software Foundation (ASF) under one - - or more contributor license agreements. See the NOTICE file - - distributed with this work for additional information +nn - or more contributor license agreements. See the NOTICE file + -n distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance @@ -22,6 +22,9 @@ <property name="module.depends" value="client broker common junit-toolkit"/> <property name="module.dist" value="false"/> + <property name="module.test.src" location="src/main/java"/> + <import file="../module.xml"/> + <property name="module.test.classes" location="${module.build}/main/classes"/> </project> |