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/common | |
| 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/common')
| -rw-r--r-- | java/common/pom.xml | 36 |
1 files changed, 4 insertions, 32 deletions
diff --git a/java/common/pom.xml b/java/common/pom.xml index e256c505d9..80e4229117 100644 --- a/java/common/pom.xml +++ b/java/common/pom.xml @@ -71,9 +71,9 @@ <artifactId>retrotranslator-maven-plugin</artifactId> <executions> <execution> - <phase>package</phase> + <id>retro-common</id> <goals> - <goal>translate</goal> + <goal>translate-project</goal> </goals> <configuration> <destjar>${project.build.directory}/${project.build.finalName}-java14.jar</destjar> @@ -85,42 +85,14 @@ <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 jar and attaches it as a jar (classified as java14) build artifact. --> - <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> </build> |
