MVN

com.commsen.stopwatch.api : stopwatch

Maven & Gradle

Jul 27, 2006

Stopwatch · Stopwatch is a free, simple, highly extensible, Java API that allows developers to easily monitor whole application or any part of it. By default Stopwatch generate reports about hits, execution times (total, average, minimum, maximum) as well as load but it can be easily extended to measure anything else by providing custom engine. Out of the box Stopwatch uses an in-memory HSQL database. It is able to persist collected data using a "storage". There is "storage" provided to persist into HSQL database and custom "storage" can be easily integrated.

<dependency>
    <groupId>com.commsen.stopwatch.api</groupId>
    <artifactId>stopwatch</artifactId>
    <version>0.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.commsen.stopwatch.api : stopwatch to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.3

All Versions

Choose a version of com.commsen.stopwatch.api : stopwatch to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.3
stopwatch-0.3

How to add a dependency to Maven

Add the following com.commsen.stopwatch.api : stopwatch maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.commsen.stopwatch.api</groupId>
    <artifactId>stopwatch</artifactId>
    <version>0.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.commsen.stopwatch.api : stopwatch gradle dependency to your build.gradle file:

implementation 'com.commsen.stopwatch.api:stopwatch:0.3'

Gradle Kotlin DSL: Add the following com.commsen.stopwatch.api : stopwatch gradle kotlin dependency to your build.gradle.kts file:

implementation("com.commsen.stopwatch.api:stopwatch:0.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.commsen.stopwatch.api : stopwatch sbt scala dependency to your build.sbt file:

libraryDependencies += "com.commsen.stopwatch.api" % "stopwatch" % "0.3"