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