forked from playframework/play-silhouette
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDependencies.scala
More file actions
52 lines (46 loc) · 2.14 KB
/
Copy pathDependencies.scala
File metadata and controls
52 lines (46 loc) · 2.14 KB
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
44
45
46
47
48
49
50
51
52
/**
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import sbt._
object Dependencies {
object Library {
val updates: Seq[ModuleID] = Seq(
"commons-io" % "commons-io" % "2.19.0"
)
object Play {
val version: String = play.core.PlayVersion.current
val ws = "org.playframework" %% "play-ws" % version
val cache = "org.playframework" %% "play-cache" % version
val test = "org.playframework" %% "play-test" % version
val specs2 = "org.playframework" %% "play-specs2" % version
val openid = "org.playframework" %% "play-openid" % version
}
object Specs2 {
private val version = "4.21.0"
val core = "org.specs2" %% "specs2-core" % version
val matcherExtra = "org.specs2" %% "specs2-matcher-extra" % version
}
val argon2 = "de.mkammerer" % "argon2-jvm" % "2.12"
val commonsCodec = "commons-codec" % "commons-codec" % "1.18.0"
val jbcrypt = "de.svenkubiak" % "jBCrypt" % "0.4.3"
val jwt = "com.auth0" % "java-jwt" % "3.19.4"
val scalaGuice = "net.codingwell" %% "scala-guice" % "7.0.0"
val pekkoTestkit = "org.apache.pekko" %% "pekko-testkit" % play.core.PlayVersion.pekkoVersion
val mockito = "org.mockito" % "mockito-core" % "5.18.0"
val casClient = "org.apereo.cas.client" % "cas-client-core" % "4.0.4"
val casClientSupportSAML = "org.apereo.cas.client" % "cas-client-support-saml" % "4.0.4"
val apacheCommonLang = "org.apache.commons" % "commons-lang3" % "3.17.0"
val googleAuth = "com.warrenstrange" % "googleauth" % "1.5.0"
val izumiReflect = "dev.zio" %% "izumi-reflect" % "3.0.3" // Scala 3 replacement for scala 2 reflect universe
}
}