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