diff options
| author | Robert Gemmell <robbie@apache.org> | 2014-01-22 15:57:20 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2014-01-22 15:57:20 +0000 |
| commit | bc96b14969fa55f0ee032908fac989924a17a6d4 (patch) | |
| tree | f6fbfafab181974e1fdac878317ddd349b8ed3b6 /java/bdbstore | |
| parent | 9581424ef032ebb874faf0ebb3db23fa1cf18ad8 (diff) | |
| download | qpid-python-bc96b14969fa55f0ee032908fac989924a17a6d4.tar.gz | |
QPID-5048: Logging dependency and configuration tidy up for maven build
Patch Supplied by Andrew MacBean <andymacbean@gmail.com>.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1560392 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/bdbstore')
| -rw-r--r-- | java/bdbstore/jmx/pom.xml | 7 | ||||
| -rw-r--r-- | java/bdbstore/pom.xml | 7 | ||||
| -rw-r--r-- | java/bdbstore/systests/pom.xml | 17 |
3 files changed, 31 insertions, 0 deletions
diff --git a/java/bdbstore/jmx/pom.xml b/java/bdbstore/jmx/pom.xml index 3480460972..82ece2c66f 100644 --- a/java/bdbstore/jmx/pom.xml +++ b/java/bdbstore/jmx/pom.xml @@ -49,6 +49,13 @@ </dependency> <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>${log4j-version}</version> + <scope>compile</scope> + </dependency> + + <dependency> <groupId>com.sleepycat</groupId> <artifactId>je</artifactId> <version>5.0.84</version> diff --git a/java/bdbstore/pom.xml b/java/bdbstore/pom.xml index c90f904171..ec71547038 100644 --- a/java/bdbstore/pom.xml +++ b/java/bdbstore/pom.xml @@ -41,6 +41,13 @@ </dependency> <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>${log4j-version}</version> + <scope>compile</scope> + </dependency> + + <dependency> <groupId>com.sleepycat</groupId> <artifactId>je</artifactId> <version>5.0.97</version> diff --git a/java/bdbstore/systests/pom.xml b/java/bdbstore/systests/pom.xml index 9c4aaa1e21..e095765ea1 100644 --- a/java/bdbstore/systests/pom.xml +++ b/java/bdbstore/systests/pom.xml @@ -49,6 +49,20 @@ </dependency> <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>${log4j-version}</version> + <scope>compile</scope> + </dependency> + + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <version>${slf4j-version}</version> + <scope>compile</scope> + </dependency> + + <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-jms_1.1_spec</artifactId> <version>1.0</version> @@ -102,6 +116,9 @@ <!-- Skip the default test phase, bind to the integration-test phase below instead --> <skip>true</skip> + <systemPropertyVariables> + <log4j.configuration.file>${project.basedir}${file.separator}..${file.separator}..${file.separator}test-profiles${file.separator}log4j-test.xml</log4j.configuration.file> + </systemPropertyVariables> </configuration> <executions> <execution> |
