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