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