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