Skip to content

Commit 8182f6c

Browse files
committed
Fixed Dependencies.
1 parent 3358e81 commit 8182f6c

File tree

1 file changed

+43
-43
lines changed

1 file changed

+43
-43
lines changed

project/Dependencies.scala

Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,101 +1,101 @@
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.3"
13-
val tapirVersion = "1.11.11"
14-
val ironCirceVersion = "2.6.0"
15-
val mUnitVersion = "1.0.3"
12+
val openapiCirceVersion = "0.11.3"
13+
val tapirVersion = "1.11.11"
14+
val ironCirceVersion = "2.6.0"
15+
val mUnitVersion = "1.0.3"
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.1"
27-
val dmnTesterVersion = "0.17.9"
26+
val sttpClient3Version = "3.10.1"
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.5.0"
36+
val chimneyVersion = "1.5.0"
3737
// --- Implementations
3838
// 04-helper
39-
val sardineWebDavVersion = "5.12"
39+
val sardineWebDavVersion = "5.12"
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?!
42+
val camundaVersion = "7.22.0" // external task client
43+
val jaxbApiVersion = "4.0.2" // needed by the camunda client 7.21?!
4444
// - sttpClient3
4545

4646
// --- Experiments
4747
// 04-c7-spring
4848
// -> bpmn
49-
val camundaSpinVersion = "7.22.0"
49+
val camundaSpinVersion = "7.22.0"
5050
// camunda // server spring-boot
5151
// 04-c8-spring
5252
// -> bpmn
53-
val scalaJacksonVersion = "2.18.2"
54-
val camunda8Version = "8.5.9"
55-
val springBootVersion = "3.3.4"
53+
val scalaJacksonVersion = "2.18.2"
54+
val camunda8Version = "8.5.9"
55+
val springBootVersion = "3.3.4"
5656
val swaggerOpenAPIVersion = "2.1.24"
5757
// examples
58-
val h2Version = "2.3.232"
59-
val twitter4jVersion = "4.1.2"
60-
val groovyVersion = "3.0.23"
58+
val h2Version = "2.3.232"
59+
val twitter4jVersion = "4.1.2"
60+
val groovyVersion = "3.0.23"
6161

6262
lazy val tapirDependencies = Seq(
63-
"com.softwaremill.sttp.tapir" %% "tapir-openapi-docs" % tapirVersion,
64-
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % tapirVersion,
65-
"com.softwaremill.sttp.tapir" %% "tapir-redoc-bundle" % tapirVersion,
63+
"com.softwaremill.sttp.tapir" %% "tapir-openapi-docs" % tapirVersion,
64+
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % tapirVersion,
65+
"com.softwaremill.sttp.tapir" %% "tapir-redoc-bundle" % tapirVersion,
6666
"com.softwaremill.sttp.apispec" %% "openapi-circe-yaml" % openapiCirceVersion,
6767
// "io.circe" %% "circe-generic" % circeVersion,
68-
"io.github.iltotore" %% "iron-circe" % ironCirceVersion,
69-
"com.softwaremill.sttp.tapir" %% "tapir-iron" % tapirVersion
68+
"io.github.iltotore" %% "iron-circe" % ironCirceVersion,
69+
"com.softwaremill.sttp.tapir" %% "tapir-iron" % tapirVersion
7070
)
7171

7272
lazy val sttpDependency = "com.softwaremill.sttp.client3" %% "circe" % sttpClient3Version
7373

7474
val zeebeDependencies = Seq(
75-
"org.springframework.boot" % "spring-boot-starter" % springBootVersion,
76-
"org.springframework.boot" % "spring-boot-starter-webflux" % springBootVersion,
77-
"io.camunda.spring" % "spring-boot-starter-camunda" % camunda8Version,
78-
"com.fasterxml.jackson.module" %% "jackson-module-scala" % scalaJacksonVersion
75+
"org.springframework.boot" % "spring-boot-starter" % springBootVersion,
76+
"org.springframework.boot" % "spring-boot-starter-webflux" % springBootVersion,
77+
"io.camunda.spring" % "spring-boot-starter-camunda" % camunda8Version,
78+
"com.fasterxml.jackson.module" %% "jackson-module-scala" % scalaJacksonVersion
7979
).map(_.exclude("org.slf4j", "slf4j-api"))
8080

8181
// examples
8282
val camundaDependencies = Seq(
83-
"org.springframework.boot" % "spring-boot-starter-web" % springBootVersion exclude ("org.slf4j", "slf4j-api"),
84-
"org.springframework.boot" % "spring-boot-starter-jdbc" % springBootVersion exclude ("org.slf4j", "slf4j-api"),
85-
"io.netty" % "netty-all" % "4.1.110.Final", // needed for Spring Boot Version > 2.5.*
86-
"org.camunda.bpm.springboot" % "camunda-bpm-spring-boot-starter-rest" % camundaVersion,
83+
"org.springframework.boot" % "spring-boot-starter-web" % springBootVersion exclude("org.slf4j", "slf4j-api"),
84+
"org.springframework.boot" % "spring-boot-starter-jdbc" % springBootVersion exclude("org.slf4j", "slf4j-api"),
85+
"io.netty" % "netty-all" % "4.1.110.Final", // needed for Spring Boot Version > 2.5.*
86+
"org.camunda.bpm.springboot" % "camunda-bpm-spring-boot-starter-rest" % camundaVersion,
8787
"org.camunda.bpm.springboot" % "camunda-bpm-spring-boot-starter-webapp" % camundaVersion,
8888
// json support
89-
"org.camunda.bpm" % "camunda-engine-plugin-spin" % camundaVersion,
90-
"org.camunda.spin" % "camunda-spin-dataformat-json-jackson" % camundaSpinVersion,
91-
"jakarta.xml.bind" % "jakarta.xml.bind-api" % jaxbApiVersion,
89+
"org.camunda.bpm" % "camunda-engine-plugin-spin" % camundaVersion,
90+
"org.camunda.spin" % "camunda-spin-dataformat-json-jackson" % camundaSpinVersion,
91+
"jakarta.xml.bind" % "jakarta.xml.bind-api" % jaxbApiVersion,
9292
// groovy support
93-
"org.codehaus.groovy" % "groovy-jsr223" % groovyVersion,
94-
"com.h2database" % "h2" % h2Version
93+
"org.codehaus.groovy" % "groovy-jsr223" % groovyVersion,
94+
"com.h2database" % "h2" % h2Version
9595
) // .map(_.exclude("org.slf4j", "slf4j-api"))
9696

97-
lazy val osLib = "com.lihaoyi" %% "os-lib" % osLibVersion
98-
lazy val chimney = "io.scalaland" %% "chimney" % chimneyVersion
97+
lazy val osLib = "com.lihaoyi" %% "os-lib" % osLibVersion
98+
lazy val chimney = "io.scalaland" %% "chimney" % chimneyVersion
9999
lazy val swaggerOpenAPI = "io.swagger.parser.v3" % "swagger-parser" % swaggerOpenAPIVersion
100-
lazy val sardineWebDav = "com.github.lookfirst" % "sardine" % sardineWebDavVersion
101-
end Dependencies
100+
lazy val sardineWebDav = "com.github.lookfirst" % "sardine" % sardineWebDavVersion
101+
}

0 commit comments

Comments
 (0)