How to add a dependency to Maven
Add the following ph.extremelogic : lap_timer maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>ph.extremelogic</groupId>
<artifactId>lap_timer</artifactId>
<version>1.0.20210204-23456</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following ph.extremelogic : lap_timer gradle dependency to your build.gradle
file:
implementation 'ph.extremelogic:lap_timer:1.0.20210204-23456'
Gradle Kotlin DSL: Add the following ph.extremelogic : lap_timer gradle kotlin dependency to your build.gradle.kts
file:
implementation("ph.extremelogic:lap_timer:1.0.20210204-23456")
How to add a dependency to SBT Scala
SBT Scala: Add the following ph.extremelogic : lap_timer sbt scala dependency to your build.sbt
file:
libraryDependencies += "ph.extremelogic" % "lap_timer" % "1.0.20210204-23456"