Last active
July 22, 2018 15:40
-
-
Save infinite-Joy/3b9c456dfb0ae08c0845a911440e07b0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Dependencies._ | |
lazy val nd4jVersion = "0.7.2" | |
lazy val root = (project in file(".")). | |
settings( | |
inThisBuild(List( | |
organization := "com.example", | |
scalaVersion := "2.12.5", | |
)), | |
name := "Hello", | |
libraryDependencies ++= Seq( | |
"org.nd4j" % "nd4j-api" % nd4jVersion, | |
"org.nd4j" % "nd4j-native-platform" % nd4jVersion % Test, | |
"ch.qos.logback" % "logback-classic" % "1.2.1" % Test, | |
), | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment