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