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