You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rp...@apache.org on 2016/04/16 07:33:08 UTC

logging-log4j2 git commit: LOG4J2-1297 added HdrHistogram dependency for use in latency tests

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 08228f2da -> d9a373f7f


LOG4J2-1297 added HdrHistogram dependency for use in latency tests


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/d9a373f7
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/d9a373f7
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/d9a373f7

Branch: refs/heads/master
Commit: d9a373f7f0e3b82a1fb9ec908686690c5bcd2b3e
Parents: 08228f2
Author: rpopma <rp...@apache.org>
Authored: Sat Apr 16 14:33:10 2016 +0900
Committer: rpopma <rp...@apache.org>
Committed: Sat Apr 16 14:33:10 2016 +0900

----------------------------------------------------------------------
 log4j-core/pom.xml | 5 +++++
 pom.xml            | 5 +++++
 2 files changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/d9a373f7/log4j-core/pom.xml
----------------------------------------------------------------------
diff --git a/log4j-core/pom.xml b/log4j-core/pom.xml
index 56eacef..3ce7d8c 100644
--- a/log4j-core/pom.xml
+++ b/log4j-core/pom.xml
@@ -279,6 +279,11 @@
       <artifactId>java-allocation-instrumenter</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.hdrhistogram</groupId>
+      <artifactId>HdrHistogram</artifactId>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
   <build>
     <plugins>

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/d9a373f7/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index c0e54d2..ac79ff5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -736,6 +736,11 @@
         <artifactId>java-allocation-instrumenter</artifactId>
         <version>3.0</version>
       </dependency>
+      <dependency>
+        <groupId>org.hdrhistogram</groupId>
+        <artifactId>HdrHistogram</artifactId>
+        <version>2.1.8</version>
+      </dependency>
     </dependencies>
   </dependencyManagement>
   <build>