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