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