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