Skip to content

Commit 7179436

Browse files
committed
Update sardine to 5.13
1 parent 5db96ff commit 7179436

File tree

1 file changed

+59
-53
lines changed

1 file changed

+59
-53
lines changed

project/Dependencies.scala

+59-53
Original file line numberDiff line numberDiff line change
@@ -1,123 +1,129 @@
11
import sbt.*
22
import sbt.Keys.*
33

4-
object Dependencies {
4+
object Dependencies:
55

66
// dependency Versions
77
// 00-docs
88
// - Laika Plugin
99
// 04-helper
10-
val osLibVersion = "0.11.3"
10+
val osLibVersion = "0.11.3"
1111
// 01-domain
12-
val openapiCirceVersion = "0.11.5"
13-
val tapirVersion = "1.11.13"
14-
val ironCirceVersion = "2.6.0"
15-
val mUnitVersion = "1.0.4"
12+
val openapiCirceVersion = "0.11.5"
13+
val tapirVersion = "1.11.13"
14+
val ironCirceVersion = "2.6.0"
15+
val mUnitVersion = "1.0.4"
1616
// 02-bpmn
1717
// -> domain
1818
// - osLib
1919
// 03-api
2020
// -> bpmn
2121
val typesafeConfigVersion = "1.4.3"
22-
val scalaXmlVersion = "2.3.0"
22+
val scalaXmlVersion = "2.3.0"
2323
// - mUnitVersion
2424
// 03-dmn
2525
// -> bpmn
26-
val sttpClient3Version = "3.10.2"
27-
val dmnTesterVersion = "0.17.9"
26+
val sttpClient3Version = "3.10.2"
27+
val dmnTesterVersion = "0.17.9"
2828
// - mUnitVersion
2929
// 03-simulation
3030
// -> bpmn
31-
val testInterfaceVersion = "1.0"
31+
val testInterfaceVersion = "1.0"
3232
// - sttpClient3
3333
// 03-worker
3434
// -> bpmn
3535
// -mUnitVersion
36-
val chimneyVersion = "1.6.0"
36+
val chimneyVersion = "1.6.0"
3737
// --- Implementations
3838
// 04-helper
39-
val sardineWebDavVersion = "5.12"
39+
val sardineWebDavVersion = "5.13"
4040
// 04-worker-c7spring
4141
// -> worker
42-
val camundaVersion = "7.22.0" // external task client
43-
val jaxbApiVersion = "4.0.2" // needed by the camunda client 7.21?!
44-
val scaffeineV = "5.3.0" // caching
45-
val zioVersion = "2.1.14" // zio
42+
val camundaVersion = "7.22.0" // external task client
43+
val jaxbApiVersion = "4.0.2" // needed by the camunda client 7.21?!
44+
val scaffeineV = "5.3.0" // caching
45+
val zioVersion = "2.1.14" // zio
4646
// - sttpClient3
4747

4848
// --- Experiments
4949
// 04-c7-spring
5050
// -> bpmn
51-
val camundaSpinVersion = "7.22.0"
51+
val camundaSpinVersion = "7.22.0"
5252
// camunda // server spring-boot
5353
// 04-c8-spring
5454
// -> bpmn
55-
val scalaJacksonVersion = "2.18.2"
56-
val camunda8Version = "8.5.16"
57-
val springBootVersion = "3.3.4"
58-
val nettyVersion = "4.1.117.Final"
55+
val scalaJacksonVersion = "2.18.2"
56+
val camunda8Version = "8.5.16"
57+
val springBootVersion = "3.3.4"
58+
val nettyVersion = "4.1.117.Final"
5959
val swaggerOpenAPIVersion = "2.1.25"
6060
// examples
61-
val h2Version = "2.3.232"
62-
val twitter4jVersion = "4.1.2"
63-
val groovyVersion = "3.0.23"
61+
val h2Version = "2.3.232"
62+
val twitter4jVersion = "4.1.2"
63+
val groovyVersion = "3.0.23"
6464

65-
lazy val jaxbApiDependency = "jakarta.xml.bind" % "jakarta.xml.bind-api" % jaxbApiVersion
65+
lazy val jaxbApiDependency = "jakarta.xml.bind" % "jakarta.xml.bind-api" % jaxbApiVersion
6666
lazy val scaffeineDependency = // token caching
6767
"com.github.blemale" %% "scaffeine" % scaffeineV // caching
6868

6969
lazy val tapirDependencies = Seq(
70-
"com.softwaremill.sttp.tapir" %% "tapir-openapi-docs" % tapirVersion,
71-
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % tapirVersion,
72-
"com.softwaremill.sttp.tapir" %% "tapir-redoc-bundle" % tapirVersion,
70+
"com.softwaremill.sttp.tapir" %% "tapir-openapi-docs" % tapirVersion,
71+
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % tapirVersion,
72+
"com.softwaremill.sttp.tapir" %% "tapir-redoc-bundle" % tapirVersion,
7373
"com.softwaremill.sttp.apispec" %% "openapi-circe-yaml" % openapiCirceVersion,
7474
// "io.circe" %% "circe-generic" % circeVersion,
75-
"io.github.iltotore" %% "iron-circe" % ironCirceVersion,
76-
"com.softwaremill.sttp.tapir" %% "tapir-iron" % tapirVersion
75+
"io.github.iltotore" %% "iron-circe" % ironCirceVersion,
76+
"com.softwaremill.sttp.tapir" %% "tapir-iron" % tapirVersion
7777
)
7878

79-
lazy val camunda7workerDependencies = Seq(
79+
lazy val camunda7workerDependencies = Seq(
8080
"org.camunda.bpm.springboot" % "camunda-bpm-spring-boot-starter-external-task-client" % camundaVersion,
81-
"org.springframework.boot" % "spring-boot-starter-oauth2-client" % springBootVersion,
82-
"org.springframework.boot" % "spring-boot-starter-security" % springBootVersion,
83-
"org.springframework.boot" % "spring-boot-starter-web" % springBootVersion
81+
"org.springframework.boot" % "spring-boot-starter-oauth2-client" % springBootVersion,
82+
"org.springframework.boot" % "spring-boot-starter-security" % springBootVersion,
83+
"org.springframework.boot" % "spring-boot-starter-web" % springBootVersion
8484
)
8585
lazy val camunda7ZioWorkerDependencies = Seq(
8686
"org.camunda.bpm" % "camunda-external-task-client" % camundaVersion
8787
)
88-
lazy val sttpDependency = "com.softwaremill.sttp.client3" %% "circe" % sttpClient3Version
88+
lazy val sttpDependency = "com.softwaremill.sttp.client3" %% "circe" % sttpClient3Version
8989

9090
val zeebeDependencies = Seq(
91-
"org.springframework.boot" % "spring-boot-starter" % springBootVersion,
92-
"org.springframework.boot" % "spring-boot-starter-webflux" % springBootVersion,
93-
"io.camunda.spring" % "spring-boot-starter-camunda" % camunda8Version,
94-
"com.fasterxml.jackson.module" %% "jackson-module-scala" % scalaJacksonVersion
95-
)//.map(_.exclude("org.slf4j", "slf4j-api"))
91+
"org.springframework.boot" % "spring-boot-starter" % springBootVersion,
92+
"org.springframework.boot" % "spring-boot-starter-webflux" % springBootVersion,
93+
"io.camunda.spring" % "spring-boot-starter-camunda" % camunda8Version,
94+
"com.fasterxml.jackson.module" %% "jackson-module-scala" % scalaJacksonVersion
95+
) // .map(_.exclude("org.slf4j", "slf4j-api"))
9696

9797
val zeebeJavaClientDependency =
98-
"io.camunda" % "zeebe-client-java" % "8.7.0-alpha2" //TODO camunda8Version,
98+
"io.camunda" % "zeebe-client-java" % "8.7.0-alpha2" // TODO camunda8Version,
9999
val zioDependency =
100100
"dev.zio" %% "zio" % zioVersion
101101
val zioSlf4jDependency = "dev.zio" %% "zio-logging-slf4j" % zioVersion
102102

103103
// examples
104104
val camundaDependencies = Seq(
105-
"org.springframework.boot" % "spring-boot-starter-web" % springBootVersion exclude("org.slf4j", "slf4j-api"),
106-
"org.springframework.boot" % "spring-boot-starter-jdbc" % springBootVersion exclude("org.slf4j", "slf4j-api"),
107-
"io.netty" % "netty-all" % nettyVersion, // needed for Spring Boot Version > 2.5.*
108-
"org.camunda.bpm.springboot" % "camunda-bpm-spring-boot-starter-rest" % camundaVersion,
105+
"org.springframework.boot" % "spring-boot-starter-web" % springBootVersion exclude (
106+
"org.slf4j",
107+
"slf4j-api"
108+
),
109+
"org.springframework.boot" % "spring-boot-starter-jdbc" % springBootVersion exclude (
110+
"org.slf4j",
111+
"slf4j-api"
112+
),
113+
"io.netty" % "netty-all" % nettyVersion, // needed for Spring Boot Version > 2.5.*
114+
"org.camunda.bpm.springboot" % "camunda-bpm-spring-boot-starter-rest" % camundaVersion,
109115
"org.camunda.bpm.springboot" % "camunda-bpm-spring-boot-starter-webapp" % camundaVersion,
110116
// json support
111-
"org.camunda.bpm" % "camunda-engine-plugin-spin" % camundaVersion,
112-
"org.camunda.spin" % "camunda-spin-dataformat-json-jackson" % camundaSpinVersion,
117+
"org.camunda.bpm" % "camunda-engine-plugin-spin" % camundaVersion,
118+
"org.camunda.spin" % "camunda-spin-dataformat-json-jackson" % camundaSpinVersion,
113119
jaxbApiDependency,
114120
// groovy support
115-
"org.codehaus.groovy" % "groovy-jsr223" % groovyVersion,
116-
"com.h2database" % "h2" % h2Version
121+
"org.codehaus.groovy" % "groovy-jsr223" % groovyVersion,
122+
"com.h2database" % "h2" % h2Version
117123
) // .map(_.exclude("org.slf4j", "slf4j-api"))
118124

119-
lazy val osLib = "com.lihaoyi" %% "os-lib" % osLibVersion
120-
lazy val chimney = "io.scalaland" %% "chimney" % chimneyVersion
125+
lazy val osLib = "com.lihaoyi" %% "os-lib" % osLibVersion
126+
lazy val chimney = "io.scalaland" %% "chimney" % chimneyVersion
121127
lazy val swaggerOpenAPI = "io.swagger.parser.v3" % "swagger-parser" % swaggerOpenAPIVersion
122-
lazy val sardineWebDav = "com.github.lookfirst" % "sardine" % sardineWebDavVersion
123-
}
128+
lazy val sardineWebDav = "com.github.lookfirst" % "sardine" % sardineWebDavVersion
129+
end Dependencies

0 commit comments

Comments
 (0)