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