diff options
author | Robert Greig <rgreig@apache.org> | 2007-03-13 12:10:14 +0000 |
---|---|---|
committer | Robert Greig <rgreig@apache.org> | 2007-03-13 12:10:14 +0000 |
commit | 7fc38d423e79ff0861e4f35f60857f676cd09735 (patch) | |
tree | 19fbb2d4de10e1d17bfa8231489bdb7d755551e2 /java/integrationtests | |
parent | 4e18208d51e7c04b3ce22eb1dc6094608e3c37bd (diff) | |
download | qpid-python-7fc38d423e79ff0861e4f35f60857f676cd09735.tar.gz |
Fixed problems with new retrotranslator plugin snapshot. Upgraded to use the new translate-project goal.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@517660 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/integrationtests')
-rw-r--r-- | java/integrationtests/pom.xml | 50 |
1 files changed, 18 insertions, 32 deletions
diff --git a/java/integrationtests/pom.xml b/java/integrationtests/pom.xml index 1231918f26..5e22cc7990 100644 --- a/java/integrationtests/pom.xml +++ b/java/integrationtests/pom.xml @@ -45,6 +45,13 @@ <artifactId>qpid-client</artifactId>
</dependency>
+ <dependency>
+ <groupId>uk.co.thebadgerset</groupId>
+ <artifactId>junit-toolkit</artifactId>
+ <version>0.6-SNAPSHOT</version>
+ <scope>compile</scope>
+ </dependency>
+
<!-- JUnit is a compile and runtime dependancy for these tests, not just a test time dependency. -->
<dependency>
<groupId>junit</groupId>
@@ -52,6 +59,13 @@ <scope>compile</scope>
</dependency>
+ <!-- These need to be included at compile time only, for the retrotranslator verification to find them. -->
+ <dependency>
+ <groupId>net.sf.retrotranslator</groupId>
+ <artifactId>retrotranslator-runtime</artifactId>
+ <scope>provided</scope>
+ </dependency>
+
</dependencies>
<build>
@@ -67,10 +81,10 @@ <artifactId>retrotranslator-maven-plugin</artifactId>
<executions>
<execution>
- <id>retro-client</id>
+ <id>retro-intergration-tests</id>
<phase>package</phase>
<goals>
- <goal>translate</goal>
+ <goal>translate-project</goal>
</goals>
<configuration>
<!--<destdir>${project.build.directory}/retro-classes</destdir>-->
@@ -83,41 +97,13 @@ <element>${retrotranslator.1.4-sasl-path}</element>
</verifyClasspath>
<failonwarning>false</failonwarning>
- <jarfileset>
- <basedir>${project.build.directory}</basedir>>
- <includes>
- <include>${project.build.finalName}.jar</include>
- </includes>
- </jarfileset>
+ <classifier>java14</classifier>
+ <attach>true</attach>
</configuration>
</execution>
</executions>
</plugin>
- <!-- This identifies the backported java 1.4 jars and attaches them as jar (classified as java14) build artifacts. -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-artifacts</id>
- <phase>package</phase>
- <goals>
- <goal>attach-artifact</goal>
- </goals>
- <configuration>
- <artifacts>
- <artifact>
- <file>${project.build.directory}/${project.build.finalName}-java14.jar</file>
- <type>jar</type>
- <classifier>java14</classifier>
- </artifact>
- </artifacts>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
</plugins>
<resources>
|