forked from pac4j/play-pac4j-scala-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
35 lines (28 loc) · 1.19 KB
/
build.sbt
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
26
27
28
29
30
31
32
33
34
35
name := "play-pac4j-scala-demo"
version := "2.5.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.8"
libraryDependencies ++= Seq(
cache,
ws,
filters,
specs2 % Test,
"org.pac4j" % "play-pac4j" % "2.5.0-SNAPSHOT",
"org.pac4j" % "pac4j-http" % "1.9.0",
"org.pac4j" % "pac4j-cas" % "1.9.0",
"org.pac4j" % "pac4j-openid" % "1.9.0" exclude("xml-apis" , "xml-apis"),
"org.pac4j" % "pac4j-oauth" % "1.9.0",
"org.pac4j" % "pac4j-saml" % "1.9.0",
"org.pac4j" % "pac4j-oidc" % "1.9.0" exclude("commons-io" , "commons-io"),
"org.pac4j" % "pac4j-gae" % "1.9.0",
"org.pac4j" % "pac4j-jwt" % "1.9.0" exclude("commons-io" , "commons-io"),
"org.pac4j" % "pac4j-ldap" % "1.9.0",
"org.pac4j" % "pac4j-sql" % "1.9.0",
"org.pac4j" % "pac4j-mongo" % "1.9.0",
"org.pac4j" % "pac4j-stormpath" % "1.9.0",
"com.typesafe.play" % "play-cache_2.11" % "2.5.4",
"commons-io" % "commons-io" % "2.4"
)
resolvers ++= Seq(Resolver.mavenLocal, "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases", "Sonatype snapshots repository" at "https://oss.sonatype.org/content/repositories/snapshots/")
routesGenerator := InjectedRoutesGenerator
fork in run := true