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