Skip to content

Instantly share code, notes, and snippets.

@infinite-Joy
Last active July 22, 2018 15:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save infinite-Joy/3b9c456dfb0ae08c0845a911440e07b0 to your computer and use it in GitHub Desktop.
Save infinite-Joy/3b9c456dfb0ae08c0845a911440e07b0 to your computer and use it in GitHub Desktop.
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