You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@htrace.apache.org by cm...@apache.org on 2015/09/02 20:39:41 UTC

incubator-htrace git commit: HTRACE-233. htrace-zipkin should explicitly include slf4j-api to avoid ClassNotFoundException (Cosmin Lehene via Colin P. McCabe)

Repository: incubator-htrace
Updated Branches:
  refs/heads/master 7997d2089 -> 31a5ef89f


HTRACE-233. htrace-zipkin should explicitly include slf4j-api to avoid ClassNotFoundException (Cosmin Lehene via Colin P. McCabe)


Project: http://git-wip-us.apache.org/repos/asf/incubator-htrace/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-htrace/commit/31a5ef89
Tree: http://git-wip-us.apache.org/repos/asf/incubator-htrace/tree/31a5ef89
Diff: http://git-wip-us.apache.org/repos/asf/incubator-htrace/diff/31a5ef89

Branch: refs/heads/master
Commit: 31a5ef89ffbec4104ef0334a557a118ac6119bde
Parents: 7997d20
Author: Colin P. Mccabe <cm...@apache.org>
Authored: Wed Sep 2 11:36:38 2015 -0700
Committer: Colin P. Mccabe <cm...@apache.org>
Committed: Wed Sep 2 11:36:38 2015 -0700

----------------------------------------------------------------------
 htrace-zipkin/pom.xml | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-htrace/blob/31a5ef89/htrace-zipkin/pom.xml
----------------------------------------------------------------------
diff --git a/htrace-zipkin/pom.xml b/htrace-zipkin/pom.xml
index d4225f0..3727513 100644
--- a/htrace-zipkin/pom.xml
+++ b/htrace-zipkin/pom.xml
@@ -27,6 +27,7 @@ language governing permissions and limitations under the License. -->
 
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <slf4j.version>1.5.8</slf4j.version>
   </properties>
 
   <build>
@@ -140,11 +141,19 @@ language governing permissions and limitations under the License. -->
       <artifactId>libthrift</artifactId>
       <version>0.9.0</version>
     </dependency>
+
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-nop</artifactId>
-      <version>1.5.8</version>
+      <version>${slf4j.version}</version>
     </dependency>
+
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>${slf4j.version}</version>
+    </dependency>
+
     <dependency>
       <groupId>commons-codec</groupId>
       <artifactId>commons-codec</artifactId>