Skip to content

Commit

Permalink
Adjusted the spring dependencies due to problems in test worker.
Browse files Browse the repository at this point in the history
  • Loading branch information
pme123 committed Dec 31, 2024
1 parent a2953b7 commit 1896166
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 1 addition & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -164,11 +164,9 @@ lazy val camunda7Worker = project
autoImportSetting,
libraryDependencies ++= Seq(
sttpDependency,
camundaExternalTaskClientDependency,
springBootOAuth2ClientDependency,
jaxbApiDependency,
scaffeineDependency
)
) ++ camunda7workerDependencies
)
.dependsOn(worker)

Expand Down
8 changes: 6 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,6 @@ object Dependencies {
val twitter4jVersion = "4.1.2"
val groovyVersion = "3.0.23"

lazy val camundaExternalTaskClientDependency = "org.camunda.bpm.springboot" % "camunda-bpm-spring-boot-starter-external-task-client" % camundaVersion
lazy val springBootOAuth2ClientDependency = "org.springframework.boot" % "spring-boot-starter-oauth2-client" % springBootVersion
lazy val jaxbApiDependency = "jakarta.xml.bind" % "jakarta.xml.bind-api" % jaxbApiVersion
lazy val scaffeineDependency = // token caching
"com.github.blemale" %% "scaffeine" % scaffeineV // caching
Expand All @@ -77,6 +75,12 @@ object Dependencies {
"com.softwaremill.sttp.tapir" %% "tapir-iron" % tapirVersion
)

lazy val camunda7workerDependencies = Seq(
"org.camunda.bpm.springboot" % "camunda-bpm-spring-boot-starter-external-task-client" % camundaVersion,
"org.springframework.boot" % "spring-boot-starter-oauth2-client" % springBootVersion,
"org.springframework.boot" % "spring-boot-starter-security" % springBootVersion,
"org.springframework.boot" % "spring-boot-starter-web" % springBootVersion
)
lazy val sttpDependency = "com.softwaremill.sttp.client3" %% "circe" % sttpClient3Version

val zeebeDependencies = Seq(
Expand Down

0 comments on commit 1896166

Please sign in to comment.