-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
43 lines (33 loc) · 1.37 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
36
37
38
39
40
41
42
43
name := """mine-sweeper-web"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava, SbtWeb)
scalaVersion := "2.11.7"
libraryDependencies ++= Seq(
javaJdbc,
cache,
javaWs,
filters,
"org.webjars" % "bootstrap" % "3.3.4",
"org.webjars" % "jquery" % "2.1.4",
"org.webjars" % "font-awesome" % "4.7.0",
"org.pac4j" % "play-pac4j" % "2.6.1",
"org.pac4j" % "pac4j-http" % "1.9.4",
"org.pac4j" % "pac4j-cas" % "1.9.4",
"org.pac4j" % "pac4j-openid" % "1.9.4" exclude("xml-apis" , "xml-apis"),
"org.pac4j" % "pac4j-oauth" % "1.9.4",
"org.pac4j" % "pac4j-saml" % "1.9.4",
"org.pac4j" % "pac4j-oidc" % "1.9.4" exclude("commons-io" , "commons-io"),
"org.pac4j" % "pac4j-gae" % "1.9.4",
"org.pac4j" % "pac4j-jwt" % "1.9.4" exclude("commons-io" , "commons-io"),
"org.pac4j" % "pac4j-ldap" % "1.9.4",
"org.pac4j" % "pac4j-sql" % "1.9.4",
"org.pac4j" % "pac4j-mongo" % "1.9.4",
"org.pac4j" % "pac4j-stormpath" % "1.9.4",
"com.typesafe.play" % "play-cache_2.11" % "2.5.4",
"commons-io" % "commons-io" % "2.4",
"be.objectify" %% "deadbolt-java" % "2.5.1"
)
resolvers += Resolver.url("Typesafe Ivy releases", url("https://repo.typesafe.com/typesafe/ivy-releases"))(Resolver.ivyStylePatterns)
includeFilter in (Assets, LessKeys.less) := "*.less" | "utils/*.less"
excludeFilter in (Assets, LessKeys.less) := "_*.less"
fork in run := false