From a65d5912cbc2c1cbb1c48085d1979c1474c9f398 Mon Sep 17 00:00:00 2001 From: Ivan Topolnjak Date: Wed, 7 Aug 2024 20:49:52 +0200 Subject: [PATCH] add jaxb dependency to spring and apache cxf modules --- build.sbt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sbt b/build.sbt index 0af2d9bf9..4c94d08f0 100644 --- a/build.sbt +++ b/build.sbt @@ -436,6 +436,7 @@ lazy val `kamon-spring` = (project in file("instrumentation/kamon-spring")) okHttp % "test", "com.h2database" % "h2" % "1.4.200" % "test", + "javax.xml.bind" % "jaxb-api" % "2.3.1" % "test", "org.springframework.boot" % "spring-boot-starter-data-jpa" % "2.4.2" % "test", scalatest % "test", logbackClassic % "test", @@ -855,6 +856,7 @@ lazy val `kamon-apache-cxf` = (project in file("instrumentation/kamon-apache-cxf "org.mock-server" % "mockserver-client-java" % "5.13.2" % "test", "com.dimafeng" %% "testcontainers-scala" % "0.41.0" % "test", "com.dimafeng" %% "testcontainers-scala-mockserver" % "0.41.0" % "test", + "javax.xml.bind" % "jaxb-api" % "2.3.1" % "test", "org.apache.cxf" % "cxf-rt-frontend-jaxws" % "3.3.6" % "test", "org.apache.cxf" % "cxf-rt-transports-http" % "3.3.6" % "test", )