diff options
| author | Robert Greig <rgreig@apache.org> | 2007-01-23 17:08:03 +0000 |
|---|---|---|
| committer | Robert Greig <rgreig@apache.org> | 2007-01-23 17:08:03 +0000 |
| commit | bc4c9900650e2d306432493751f3e84f7b09e8e3 (patch) | |
| tree | 114a978eb66ea97df9de3192539d0f247ee46d84 /java/pom.xml | |
| parent | b076114507d5c838ecf3d10f1f2dbea78a35f139 (diff) | |
| download | qpid-python-bc4c9900650e2d306432493751f3e84f7b09e8e3.tar.gz | |
(Patch submitted by Rupert Smith) Added the ability to limit the rate at which messages are sent by the ping tests.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@499083 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/pom.xml')
| -rw-r--r-- | java/pom.xml | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/java/pom.xml b/java/pom.xml index 6b6cb9d03b..e1d9805bbb 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -97,6 +97,13 @@ <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>--> + <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>--> @@ -115,8 +122,6 @@ <surefire-report.version>2.1-SNAPSHOT</surefire-report.version> <surefire.version>2.2</surefire.version> - <amqj.logging.level>warn</amqj.logging.level> - <eclipse.workspace.dir>${basedir}/${topDirectoryLocation}/../workspace</eclipse.workspace.dir> <clover.license.pathname>/set/clover/license/path/here</clover.license.pathname> </properties> @@ -283,10 +288,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>file:/${topDirectoryLocation}/etc/log4j.xml</value>--> + <!-- + <name>log4j.configuration</name> + <value>${log4j.configuration}</value> + --> </property> </systemproperties> </configuration> |
