diff --git a/README.md b/README.md
index f5c8d480..c401f0c3 100644
--- a/README.md
+++ b/README.md
@@ -3,31 +3,39 @@
There is nothing faster. There is nothing more correct. HikariCP is a "zero-overhead" production-quality connection pool. Coming in at roughly 50Kb, the library is extremely light. Read about [how we do it here](https://github.com/brettwooldridge/HikariCP/wiki/Down-the-Rabbit-Hole).
+***Maven Repository***
+```xml
+
+
Using the excellent [JMH microbenchmark framework](http://openjdk.java.net/projects/code-tools/jmh/) developed by the Oracle JVM performance team, extremely accurate microbenchmarks were created to isolate and measure the overhead of HikariCP and other popular pools. You can checkout the [HikariCP benchmark project for details](https://github.com/brettwooldridge/HikariCP-benchmark) and review/run the benchmarks yourself.
-One *Connection Cycle* is defined as single ``DataSource.getConnection()``/``Connection.close()``. One *Statement Cycle* is defined as single ``Connection.prepareStatement()``/``Statement.close()``. + * One *Connection Cycle* is defined as single ``DataSource.getConnection()``/``Connection.close()``. + * In *Unconstrained* benchmark connections > threads. + * In *Constrained* benchmark threads > connections (2:1). + * One *Statement Cycle* is defined as single ``Connection.prepareStatement()``, ``Statement.execute()``, ``Statement.close()``. + +1 BoneCP fails to complete *Statement Cycle* benchmark unless the "CACHED" pool strategy is used.