From 5678e4b78e670ed754b596849e0d871312debf9c Mon Sep 17 00:00:00 2001 From: David Rauschenbach Date: Mon, 14 Jul 2014 19:08:28 -0700 Subject: [PATCH] Fixed compilation errors due to incomplete Maven pom.xml, and a reference to a non-existent parent pom. Fixed missing log4j.xml wanted by unit tests. --- pom.xml | 49 +++++++++++++++++++++++++++++++----- src/test/resources/log4j.xml | 21 ++++++++++++++++ 2 files changed, 64 insertions(+), 6 deletions(-) create mode 100644 src/test/resources/log4j.xml diff --git a/pom.xml b/pom.xml index c321992..baabb30 100644 --- a/pom.xml +++ b/pom.xml @@ -4,6 +4,20 @@ com.ciq qless-java 0.0.4-SNAPSHOT + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.7 + 1.7 + + + + + joda-time @@ -23,13 +37,41 @@ redis.clients jedis - 2.2.1-SNAPSHOT + 2.2.1 org.hamcrest hamcrest-api 1.0 + + org.slf4j + slf4j-api + 1.6.4 + + + com.google.inject + guice + 3.0 + + + com.google.inject.extensions + guice-assistedinject + 3.0 + + + + junit + junit + 4.8.2 + test + + + org.slf4j + slf4j-log4j12 + 1.6.4 + test + qless Java Client http://github.com/ChannelIQ/qless-java @@ -39,9 +81,4 @@ scm:git:git@github.com:ChannelIQ/qless-java.git scm:git:git@github.com:ChannelIQ/qless-java.git - - com.ciq - project-base - 0.0.2-SNAPSHOT - \ No newline at end of file diff --git a/src/test/resources/log4j.xml b/src/test/resources/log4j.xml new file mode 100644 index 0000000..8a976c9 --- /dev/null +++ b/src/test/resources/log4j.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file