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