diff options
| author | Robert Greig <rgreig@apache.org> | 2007-01-15 17:29:32 +0000 |
|---|---|---|
| committer | Robert Greig <rgreig@apache.org> | 2007-01-15 17:29:32 +0000 |
| commit | 0ed49f10566e27dc2544e3296db13a1d3d6730f7 (patch) | |
| tree | aece068c25fe233227e1390d4fb2af666623c0f1 /qpid/java/broker/pom.xml | |
| parent | 1a2327b98e6d5b2a65a12b70a9abc3f5ceb0f113 (diff) | |
| download | qpid-python-0ed49f10566e27dc2544e3296db13a1d3d6730f7.tar.gz | |
(Patch submitted by Rupert Smith) QPID-297
There were junit exclusions in the POM files that were causing junit to not be found when compiling tests. This may be a maven bug, but a better solution is to exclude stuff in assembly descriptors instead.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@496414 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/broker/pom.xml')
| -rw-r--r-- | qpid/java/broker/pom.xml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/qpid/java/broker/pom.xml b/qpid/java/broker/pom.xml index 339d90ef9e..2cf8a563f0 100644 --- a/qpid/java/broker/pom.xml +++ b/qpid/java/broker/pom.xml @@ -37,6 +37,7 @@ </properties> <dependencies> + <dependency> <groupId>org.apache.qpid</groupId> <artifactId>qpid-common</artifactId> @@ -45,12 +46,6 @@ <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> - <exclusions> - <exclusion> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - </exclusion> - </exclusions> </dependency> <dependency> @@ -63,7 +58,7 @@ <artifactId>commons-lang</artifactId> </dependency> -<!-- Test Dependencies --> + <!-- Test Dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> @@ -75,6 +70,7 @@ <artifactId>easymockclassextension</artifactId> <scope>test</scope> </dependency> + </dependencies> <build> |
