summaryrefslogtreecommitdiff
path: root/java/pom.xml
diff options
context:
space:
mode:
authorRobert Greig <rgreig@apache.org>2007-02-12 10:10:27 +0000
committerRobert Greig <rgreig@apache.org>2007-02-12 10:10:27 +0000
commit9f058a5a5193fb2b05113a092e4e83025dba05ea (patch)
tree82b4ddfa5482564471d0ddc9602493042f7d9580 /java/pom.xml
parentf77c9657bb44466c5e78709d0484f6ab7e2b0522 (diff)
downloadqpid-python-9f058a5a5193fb2b05113a092e4e83025dba05ea.tar.gz
(Path Qpid-337 submitted by Rupert Smith)
Does 1.4 retrotranslation as part of the maven build. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@506401 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/pom.xml')
-rw-r--r--java/pom.xml45
1 files changed, 34 insertions, 11 deletions
diff --git a/java/pom.xml b/java/pom.xml
index 98daf1be3e..8e4c6a91c3 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -47,7 +47,7 @@
<url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
</snapshotRepository>
- <!-- Qpid has a Wiki site, maven generated site not used. This is just so that it can be created locally for viewing the reports. -->
+ <!-- Qpid has a Wiki site, maven generated site not used. This is just so that it can be created locally for viewing the reports. -->
<site>
<id>Qpid_Site</id>
<name>Qpid Site</name>
@@ -97,17 +97,17 @@
<java.source.version>1.5</java.source.version>
<compile.flags>-Xlint:fallthrough,finally</compile.flags>
- <!--
+ <!--
This should always point to a default minimal log4j configuration that all developers are happy with as a useable default. To use your own
log4j preferences set up an alternative in your settings.xml and avoid corrupting the default with private preferences.
- -->
- <!--<log4j.configuration>file:/${topDirectoryLocation}/etc/log4j.xml</log4j.configuration>-->
+ -->
+ <!--<log4j.configuration>file:/${topDirectoryLocation}/etc/log4j.xml</log4j.configuration>-->
<amqj.logging.level>warn</amqj.logging.level> <!-- This is referenced in the default log4j.xml -->
<!--Versions for various plugins and features -->
<antrun.version>1.2-SNAPSHOT</antrun.version>
<!--<assembly.version>2.2-SNAPSHOT</assembly.version>-->
- <assembly.version>2.1</assembly.version>
+ <assembly.version>2.1</assembly.version>
<cobertura.version>2.0</cobertura.version>
<compiler.version>2.0.1</compiler.version>
<dependency.plugin.version>1.0</dependency.plugin.version>
@@ -121,7 +121,8 @@
<site.version>2.0-beta-5</site.version>
<surefire-report.version>2.1-SNAPSHOT</surefire-report.version>
<surefire.version>2.2</surefire.version>
-
+ <retrotranslator.plugin.version>1.0-alpha-1</retrotranslator.plugin.version>
+ <build-helper.plugin.version>1.0</build-helper.plugin.version>
<eclipse.workspace.dir>${basedir}/${topDirectoryLocation}/../workspace</eclipse.workspace.dir>
<clover.license.pathname>/set/clover/license/path/here</clover.license.pathname>
</properties>
@@ -251,6 +252,18 @@
</plugin>
<plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>retrotranslator-maven-plugin</artifactId>
+ <version>${retrotranslator.plugin.version}</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <version>${build-helper.plugin.version}</version>
+ </plugin>
+
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${jar.version}</version>
@@ -288,12 +301,12 @@
<argLine>-ea</argLine>
<systemproperties>
<property>
- <name>amqj.logging.level</name>
+ <name>amqj.logging.level</name>
<value>${amqj.logging.level}</value>
- <!--
- <name>log4j.configuration</name>
- <value>${log4j.configuration}</value>
- -->
+ <!--
+ <name>log4j.configuration</name>
+ <value>${log4j.configuration}</value>
+ -->
</property>
</systemproperties>
</configuration>
@@ -363,6 +376,16 @@
<dependencyManagement>
<dependencies>
+
+ <!-- Comile time only dependencies. -->
+ <dependency>
+ <groupId>net.sf.retrotranslator</groupId>
+ <artifactId>retrotranslator-runtime</artifactId>
+ <version>1.0.8</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- Compilation and run time dependecies. -->
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>