stopwatch
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.priytam</groupId> <artifactId>stopwatch</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.priytam</groupId> <artifactId>stopwatch</artifactId> <version>1.0.0</version> <name>stopwatch</name> <description>A java library that provides thread safe implimentation of stop watch ------------------------------------------ Project version: 1.0.0 Gradle version: 6.1 Documentation: https://priytam.github.io/stopwatch/ ------------------------------------------ </description> <url>https://github.com/Priytam/alarm</url> <licenses> <license> <name>The MIT License (MIT)</name> <url>http://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>Priytam</id> <name>Priytam Jee Pandey</name> <email>mrpjpandey@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/Priytam/alarm.git</connection> <developerConnection>scm:git:git@github.com:Priytam/alarm.git</developerConnection> <url>https://github.com/Priytam/alarm.git</url> </scm> <dependencies> <dependency> <groupId>concurrent</groupId> <artifactId>concurrent</artifactId> <version>1.3.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> </project>