How to add a dependency to Maven
Add the following fr.irit.smac.thirdparty.edu.gmu.cs : mason maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>fr.irit.smac.thirdparty.edu.gmu.cs</groupId>
<artifactId>mason</artifactId>
<version>18</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following fr.irit.smac.thirdparty.edu.gmu.cs : mason gradle dependency to your build.gradle
file:
implementation 'fr.irit.smac.thirdparty.edu.gmu.cs:mason:18'
Gradle Kotlin DSL: Add the following fr.irit.smac.thirdparty.edu.gmu.cs : mason gradle kotlin dependency to your build.gradle.kts
file:
implementation("fr.irit.smac.thirdparty.edu.gmu.cs:mason:18")
How to add a dependency to SBT Scala
SBT Scala: Add the following fr.irit.smac.thirdparty.edu.gmu.cs : mason sbt scala dependency to your build.sbt
file:
libraryDependencies += "fr.irit.smac.thirdparty.edu.gmu.cs" % "mason" % "18"