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