diff options
author | Robert Greig <rgreig@apache.org> | 2007-03-07 11:25:26 +0000 |
---|---|---|
committer | Robert Greig <rgreig@apache.org> | 2007-03-07 11:25:26 +0000 |
commit | 4a016bad34628ed7aa0f2409b80098290cf023a6 (patch) | |
tree | 70ac26eb8e185521404556290d7bf3e863daf830 /java/integrationtests | |
parent | 6cebb6ee2ca4aed51c00b41337d554ad7ee5e1ac (diff) | |
download | qpid-python-4a016bad34628ed7aa0f2409b80098290cf023a6.tar.gz |
(Patch submitted by Rupert Smith)
Updated to latest snapshot of retrotranslator plugin. Concrete release to be made soon from this snapshot, will change over to conrete version once this happens.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@515535 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/integrationtests')
-rw-r--r-- | java/integrationtests/pom.xml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/java/integrationtests/pom.xml b/java/integrationtests/pom.xml index 79d587f360..1231918f26 100644 --- a/java/integrationtests/pom.xml +++ b/java/integrationtests/pom.xml @@ -45,10 +45,11 @@ <artifactId>qpid-client</artifactId>
</dependency>
- <!-- Test dependencies. -->
+ <!-- JUnit is a compile and runtime dependancy for these tests, not just a test time dependency. -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
+ <scope>compile</scope>
</dependency>
</dependencies>
@@ -82,12 +83,12 @@ <element>${retrotranslator.1.4-sasl-path}</element>
</verifyClasspath>
<failonwarning>false</failonwarning>
- <includes>
- <include>
- <directory>${project.build.directory}</directory>
- <pattern>${project.build.finalName}.jar</pattern>
- </include>
- </includes>
+ <jarfileset>
+ <basedir>${project.build.directory}</basedir>>
+ <includes>
+ <include>${project.build.finalName}.jar</include>
+ </includes>
+ </jarfileset>
</configuration>
</execution>
</executions>
|