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