-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathDependencies.scala
More file actions
53 lines (45 loc) · 2.22 KB
/
Copy pathDependencies.scala
File metadata and controls
53 lines (45 loc) · 2.22 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
53
/*
* Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>
*/
import net.aichler.jupiter.sbt.Import.JupiterKeys.jupiterVersion
import sbt.Keys.libraryDependencies
import sbt._
object Dependencies {
object ScalaVersions {
val scala213 = "2.13.18"
val scala3 = "3.3.7"
}
object Versions {
val CXF = "4.2.2"
val Play = "3.0.11"
}
val `play-client` = libraryDependencies ++= Seq(
"org.playframework" %% "play" % Versions.Play % Provided,
"org.apache.cxf" % "cxf-rt-frontend-jaxws" % Versions.CXF % Provided,
"org.apache.cxf" % "cxf-rt-transports-http-hc" % Versions.CXF % Provided,
"org.apache.cxf" % "cxf-rt-transports-http" % Versions.CXF % Test,
"org.apache.cxf" % "cxf-rt-transports-http-jetty" % Versions.CXF % Test,
"org.playframework" %% "play-specs2" % Versions.Play % Test
)
val plugin = libraryDependencies ++= Seq(
"org.apache.cxf" % "cxf-tools-wsdlto-frontend-jaxws" % Versions.CXF % Provided,
"org.apache.cxf" % "cxf-tools-wsdlto-databinding-jaxb" % Versions.CXF % Provided
)
val `mock-server` = libraryDependencies ++= Seq(
"org.apache.cxf" % "cxf-rt-frontend-jaxws" % Versions.CXF,
"org.apache.cxf" % "cxf-rt-transports-http-jetty" % Versions.CXF,
)
val `test-java` = libraryDependencies ++= Seq(
"org.apache.cxf" % "cxf-rt-frontend-jaxws" % Versions.CXF % Test,
"org.apache.cxf" % "cxf-rt-transports-http-hc5" % Versions.CXF % Test,
"net.aichler" % "jupiter-interface" % jupiterVersion.value % Test,
"org.testcontainers" % "junit-jupiter" % "1.21.4" % Test,
"org.assertj" % "assertj-core" % "3.27.7" % Test
)
val `test-scala` = libraryDependencies ++= Seq(
"org.apache.cxf" % "cxf-rt-frontend-jaxws" % Versions.CXF % Test,
"org.apache.cxf" % "cxf-rt-transports-http-hc5" % Versions.CXF % Test,
"com.dimafeng" %% "testcontainers-scala" % "0.44.1" % Test,
"org.scalatest" %% "scalatest" % "3.2.20" % Test,
)
}