blob: 5408f8f957eea325cf5a74f44b810099340dcf65 [file] [log] [blame]
import sbt._
import Keys._
import play.Project._
object ApplicationBuild extends Build {
val appName = "predictionio-api"
val appVersion = "0.4.1"
val appDependencies = Seq(
"io.prediction" %% "predictionio-commons" % "0.4.1",
"io.prediction" %% "predictionio-output" % "0.4.1"
)
val main = play.Project(appName, appVersion, appDependencies).settings(
resolvers += (
"Local Maven Repository" at "file://"+Path.userHome.absolutePath+"/.m2/repository"
)
)
}