-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
25 lines (20 loc) · 752 Bytes
/
Copy pathbuild.sbt
File metadata and controls
25 lines (20 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name := "hall-hooks"
version := "1.0-SNAPSHOT"
resolvers ++= Seq(
"Spray IO Release Repo" at "http://repo.spray.io",
"Sonatype Nexus Repository Manager Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
)
libraryDependencies ++= Seq(
//Testing
"org.mockito" % "mockito-core" % "1.9.5" % "test",
//WebJars
"org.webjars" %% "webjars-play" % "2.2.0",
"org.webjars" % "bootstrap" % "3.0.3",
"org.webjars" % "jquery" % "2.0.3-1",
"org.webjars" % "font-awesome" % "4.0.3",
//Views
"com.balihoo" %% "play2-bootstrap3" % (play.core.PlayVersion.current + "-SNAPSHOT")
)
play.Project.playScalaSettings
//Coveralls settings: https://github.com/theon/xsbt-coveralls-plugin
seq(CoverallsPlugin.singleProject: _*)