We already publish openfasttrace to JCenter, see openfasttrace distribution. Using libraries from JCenter in a Gradle build only requires adding repositories { jcenter() } to your build.gradle.
You can do the same with maven by adding the following to your pom.xml:
<repositories>
<repository>
<id>central</id>
<name>bintray</name>
<url>http://jcenter.bintray.com</url>
</repository>
</repositories>
But we want to make it even easier for maven users by publishing our artifacts to the Maven Central repository which maven uses by default.