Skip to content

Commit

Permalink
Merge pull request #60 from kenshoo/small-changes
Browse files Browse the repository at this point in the history
fix broken url, fix codecov report icon link, add sbt launch jar
  • Loading branch information
rannisim authored Aug 16, 2017
2 parents 80cd071 + 85ce15d commit 261048e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
7 changes: 2 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ scala:
jdk:
- oraclejdk8
script:
- sbt clean coverage test

before_install:
- pip install --user codecov
- sbt clean coverage test coverageReport
after_success:
- codecov
- bash <(curl -s https://codecov.io/bash)
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This module provides some support for @codahale [Metrics](https://dropwizard.git

[![Build Status](https://travis-ci.org/kenshoo/metrics-play.png)](https://travis-ci.org/kenshoo/metrics-play)

[![codecov.io](http://codecov.io/github/kenshoo/metrics-play/coverage.svg?branch=master)](http://codecov.io/github/kenshoo/metrics-play?branch=master)
[![codecov.io](https://img.shields.io/codecov/c/gh/kenshoo/metrics-play/master.svg)](https://codecov.io/github/kenshoo/metrics-play/branch/master)

Play Version: 2.6.2, Metrics Version: 3.2.2, Scala Versions: 2.12.2

Expand Down Expand Up @@ -48,7 +48,7 @@ To add a custom metrics, you can use `defaultRegistry` which returns an instance

### Metrics Controller

An implementation of the [metrics-servlet](http://metrics.codahale.com/manual/servlets/) as a play2 controller.
An implementation of the [metrics-servlet](http://metrics.dropwizard.io/3.1.0/manual/servlets/#metricsservlet) as a play2 controller.

It exports all registered metrics as a json document.

Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.4.0")

addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.0")

addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
3 changes: 3 additions & 0 deletions sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
SBT_OPTS="-Xms512M -Xmx1536M -Xss1M -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=256M"
java $SBT_OPTS -jar `dirname $0`/sbt-launch.jar "$@"
Binary file added sbt-launch.jar
Binary file not shown.

0 comments on commit 261048e

Please sign in to comment.