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