forked from pac4j/play-pac4j-java-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
32 lines (25 loc) · 1.08 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
name := "play-pac4j-java-demo"
version := "2.0.1-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava)
scalaVersion := "2.11.6"
libraryDependencies ++= Seq(
"org.pac4j" % "play-pac4j-java" % "2.0.1-SNAPSHOT",
"org.pac4j" % "pac4j-http" % "1.8.2",
"org.pac4j" % "pac4j-cas" % "1.8.2",
"org.pac4j" % "pac4j-openid" % "1.8.2",
"org.pac4j" % "pac4j-oauth" % "1.8.2",
"org.pac4j" % "pac4j-saml" % "1.8.2",
"org.pac4j" % "pac4j-oidc" % "1.8.2",
"org.pac4j" % "pac4j-gae" % "1.8.2",
"org.pac4j" % "pac4j-jwt" % "1.8.2",
"org.pac4j" % "pac4j-ldap" % "1.8.2",
"org.pac4j" % "pac4j-sql" % "1.8.2",
"org.pac4j" % "pac4j-mongo" % "1.8.2",
"org.pac4j" % "pac4j-stormpath" % "1.8.2",
"com.typesafe.play" % "play-cache_2.11" % "2.4.0"
)
// resolvers := Seq(Resolver.mavenLocal)
resolvers ++= Seq( Resolver.mavenLocal,
"Sonatype snapshots repository" at "https://oss.sonatype.org/content/repositories/snapshots/",
"Pablo repo" at "https://raw.github.com/fernandezpablo85/scribe-java/mvn-repo/")
routesGenerator := InjectedRoutesGenerator