Import
Maven¶
To include DynaML in your maven JVM project edit your pom.xml
file as follows
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.transcendent-ai-labs</groupId>
<artifactId>DynaML</artifactId>
<version>v1.4</version>
</dependency>
SBT¶
For sbt projects edit your build.sbt
(see JitPack for more details)
resolvers += "jitpack" at "https://jitpack.io"
libraryDependencies += "com.github.transcendent-ai-labs" % "DynaML" % version
Gradle¶
In your gradle project, add the following to the root build.gradle
as follows
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
and then add the dependency like
dependencies {
compile 'com.github.User:Repo:Tag'
}
Leinengen¶
In project.clj
:repositories [["jitpack" "https://jitpack.io"]]
:dependencies [[com.github.User/Repo "Tag"]]