Skip to content

Instantly share code, notes, and snippets.

@shiv4nsh
Created August 2, 2016 08:48
Show Gist options
  • Save shiv4nsh/0e01213dff501153eed55e9edce024ee to your computer and use it in GitHub Desktop.
Save shiv4nsh/0e01213dff501153eed55e9edce024ee to your computer and use it in GitHub Desktop.
THe build file for scala
organization := "com.knoldus"
name := "dl4j-spark-scala-starter-kit"
version := "0.1.4"
scalaVersion := "2.11.8"
resolvers ++= Seq(
"Lightbend Releases" at "http://repo.typesafe.com/typesafe/releases"
)
val nd4jVersion = "0.4.0"
libraryDependencies ++= Seq(
"org.nd4j" % "nd4j-native" % nd4jVersion,
"org.nd4j" % "nd4j-api" % nd4jVersion,
"org.deeplearning4j" % "dl4j-spark_2.11" % nd4jVersion,
"com.beust" % "jcommander" % "1.27",
"org.scalatest" %% "scalatest" % "2.2.6" % "test" withSources(),
"junit" % "junit" % "4.12" % "test"
)
logLevel := Level.Warn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment