Skip to content

Commit d6b1cdf

Browse files
committed
1 parent 9d6b7cf commit d6b1cdf

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

pom.xml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
<jackson-core.version>2.13.3</jackson-core.version>
7373
<spring-boot-starter-parent.version>2.7.1</spring-boot-starter-parent.version>
7474
<omni-coveragereporter-maven-plugin.version>0.3.0</omni-coveragereporter-maven-plugin.version>
75+
<kotlinx-coroutines-debug.version>1.6.3</kotlinx-coroutines-debug.version>
7576
</properties>
7677

7778
<packaging>pom</packaging>
@@ -90,7 +91,19 @@
9091
<type>pom</type>
9192
<scope>import</scope>
9293
</dependency>
93-
94+
<!-- This Dependency is added as a workaround for the following issue -->
95+
<!--- https://github.com/Kotlin/kotlinx.coroutines/issues/3334 -->
96+
<dependency>
97+
<groupId>org.jetbrains.kotlinx</groupId>
98+
<artifactId>kotlinx-coroutines-debug</artifactId>
99+
<version>${kotlinx-coroutines-debug.version}</version>
100+
<exclusions>
101+
<exclusion>
102+
<groupId>org.jetbrains.kotlinx</groupId>
103+
<artifactId>kotlinx-coroutines-bom</artifactId>
104+
</exclusion>
105+
</exclusions>
106+
</dependency>
94107
<dependency>
95108
<groupId>org.mapstruct</groupId>
96109
<artifactId>mapstruct-processor</artifactId>

0 commit comments

Comments
 (0)