diff options
| author | Rupert Smith <rupertlssmith@apache.org> | 2007-08-01 16:19:31 +0000 |
|---|---|---|
| committer | Rupert Smith <rupertlssmith@apache.org> | 2007-08-01 16:19:31 +0000 |
| commit | 6b54ebb02e87cc4cc0a7bcd1d9d820c463f76e7f (patch) | |
| tree | 8d36febd23837f732c8c026abbdca5bcdcff7626 /java/perftests/pom.xml | |
| parent | 326741e927301ccf036a3ec98718bc622ca9e435 (diff) | |
| download | qpid-python-6b54ebb02e87cc4cc0a7bcd1d9d820c463f76e7f.tar.gz | |
Extensive refactoring of the distributed test framework.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@561855 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/perftests/pom.xml')
| -rw-r--r-- | java/perftests/pom.xml | 31 |
1 files changed, 29 insertions, 2 deletions
diff --git a/java/perftests/pom.xml b/java/perftests/pom.xml index e07b0696e5..41bd6c1a84 100644 --- a/java/perftests/pom.xml +++ b/java/perftests/pom.xml @@ -72,6 +72,11 @@ </dependency> <dependency> + <groupId>org.apache.qpid</groupId> + <artifactId>qpid-systests</artifactId> + </dependency> + + <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </dependency> @@ -85,9 +90,10 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> + <scope>compile</scope> </dependency> - <dependency> + <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.4.0</version> @@ -354,13 +360,34 @@ <configuration> <descriptors> <descriptor>jar-with-dependencies.xml</descriptor> - <descriptor>dist-zip.xml</descriptor> + <!--<descriptor>dist-zip.xml</descriptor>--> </descriptors> <outputDirectory>target</outputDirectory> <workDirectory>target/assembly/work</workDirectory> </configuration> </plugin> + <!-- Build a manifest only jar with all the required jars for the broker in its classpath. --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <id>test_jar</id> + <configuration> + <archive> + <manifest> + <addClasspath>true</addClasspath> + </manifest> + </archive> + </configuration> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> <resources> |
