You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mnemonic.apache.org by ga...@apache.org on 2016/11/21 17:32:36 UTC

[10/14] incubator-mnemonic git commit: MNEMONIC-161: add classic logback logger dependency

MNEMONIC-161: add classic logback logger dependency


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

Branch: refs/heads/master
Commit: e30ac7250526f5d4e5480de1653d005069c91ccf
Parents: 53bf3b6
Author: Wang, Gang(Gary) <ga...@intel.com>
Authored: Thu Nov 17 12:18:08 2016 -0800
Committer: Wang, Gang(Gary) <ga...@intel.com>
Committed: Thu Nov 17 12:51:33 2016 -0800

----------------------------------------------------------------------
 mnemonic-benches/pom.xml |  8 ++++++++
 pom.xml                  | 11 +++++++++++
 2 files changed, 19 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/e30ac725/mnemonic-benches/pom.xml
----------------------------------------------------------------------
diff --git a/mnemonic-benches/pom.xml b/mnemonic-benches/pom.xml
index 377f1c0..bf8a3c1 100644
--- a/mnemonic-benches/pom.xml
+++ b/mnemonic-benches/pom.xml
@@ -79,6 +79,14 @@
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-log4j12</artifactId>
     </dependency>
+    <dependency>
+       <groupId>ch.qos.logback</groupId>
+       <artifactId>logback-classic</artifactId>
+    </dependency>
+    <dependency>
+       <groupId>ch.qos.logback</groupId>
+       <artifactId>logback-core</artifactId>
+    </dependency>
   </dependencies>
 
   <build>

http://git-wip-us.apache.org/repos/asf/incubator-mnemonic/blob/e30ac725/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 04df5c5..7e10bf0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -108,6 +108,7 @@
     <gpg.keyname>apache.org</gpg.keyname>
     <slf4j.version>1.7.21</slf4j.version>
     <log4j.version>1.2.17</log4j.version>
+    <logback.version>1.1.7</logback.version>
   </properties>
 
   <repositories>
@@ -172,6 +173,16 @@
         <artifactId>log4j</artifactId>
         <version>${log4j.version}</version>
       </dependency>
+      <dependency>
+       <groupId>ch.qos.logback</groupId>
+       <artifactId>logback-classic</artifactId>
+       <version>${logback.version}</version>
+      </dependency>
+      <dependency>
+       <groupId>ch.qos.logback</groupId>
+       <artifactId>logback-core</artifactId>
+       <version>${logback.version}</version>
+      </dependency>
     </dependencies>
   </dependencyManagement>