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