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