Skip to content

Commit

Permalink
Changed sample Build to not include the testkit by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jaliss committed Mar 4, 2014
1 parent 31d2857 commit af86662
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions samples/scala/demo/project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ object ApplicationBuild extends Build {
val appVersion = "1.0"

val appDependencies = Seq(
"ws.securesocial" %% "securesocial" % "master-SNAPSHOT",
"ws.securesocial" %% "securesocial-testkit" % "master-SNAPSHOT" % "test"
"ws.securesocial" %% "securesocial" % "master-SNAPSHOT"
// To use the testkit for now compile and publish it locally
// then uncomment this dependency.
//"ws.securesocial" %% "securesocial-testkit" % "master-SNAPSHOT" % "test"
)
val main = play.Project(appName, appVersion, appDependencies).settings(
resolvers += Resolver.sonatypeRepo("snapshots")
Expand Down

0 comments on commit af86662

Please sign in to comment.