diff options
Diffstat (limited to 'java/perftests')
| -rw-r--r-- | java/perftests/distribution/src/main/assembly/performance.xml | 2 | ||||
| -rw-r--r-- | java/perftests/pom.xml | 24 |
2 files changed, 24 insertions, 2 deletions
diff --git a/java/perftests/distribution/src/main/assembly/performance.xml b/java/perftests/distribution/src/main/assembly/performance.xml index c36b7e3640..0bf7efa21e 100644 --- a/java/perftests/distribution/src/main/assembly/performance.xml +++ b/java/perftests/distribution/src/main/assembly/performance.xml @@ -93,4 +93,4 @@ </excludes> </dependencySet> </dependencySets> -G</assembly> +</assembly> diff --git a/java/perftests/pom.xml b/java/perftests/pom.xml index 98d2696b80..bfa24d99a3 100644 --- a/java/perftests/pom.xml +++ b/java/perftests/pom.xml @@ -38,10 +38,32 @@ </properties> <dependencies> + <dependency> <groupId>org.apache.qpid</groupId> <artifactId>qpid-client</artifactId> </dependency> + + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + </dependency> + + <!-- Here JUnit is a deliberate 'compile' scope dependency, it will be packaged with the perf testing tools. --> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>compile</scope> + </dependency> + + <!-- Will be added to maven repo soon. JUnit test runner that can add repeats/concurrenct/timing etc to tests. + <dependency> + <groupId>uk.co.thebadgerset</groupId> + <artifactId>junit-toolkit</artifactId> + <scope>compile</scope> + </dependency> + --> + </dependencies> <build> @@ -54,7 +76,7 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> - <skip>true</skip> + <!--<skip>true</skip>--> </configuration> </plugin> |
