Skip to content

Commit cab5a39

Browse files
Update pom.xml
- Workaround: Kotlin/kotlinx.coroutines#3334
1 parent 3a4b965 commit cab5a39

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

pom.xml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
<omni-coveragereporter-maven-plugin.version>0.3.0</omni-coveragereporter-maven-plugin.version>
4343
<reactor-test.version>3.4.19</reactor-test.version>
4444
<maven-plugin.version>3.0.0-M7</maven-plugin.version>
45+
<kotlinx-coroutines-debug.version>1.6.3</kotlinx-coroutines-debug.version>
4546
</properties>
4647

4748
<dependencyManagement>
@@ -190,6 +191,20 @@
190191
<version>${reactor-test.version}</version>
191192
<scope>test</scope>
192193
</dependency>
194+
<!-- This Dependency is added as a workaround for the following issue -->
195+
<!--- https://github.com/Kotlin/kotlinx.coroutines/issues/3334 -->
196+
<dependency>
197+
<groupId>org.jetbrains.kotlinx</groupId>
198+
<artifactId>kotlinx-coroutines-debug</artifactId>
199+
<version>${kotlinx-coroutines-debug.version}</version>
200+
<scope>test</scope>
201+
<exclusions>
202+
<exclusion>
203+
<groupId>org.jetbrains.kotlinx</groupId>
204+
<artifactId>kotlinx-coroutines-bom</artifactId>
205+
</exclusion>
206+
</exclusions>
207+
</dependency>
193208
</dependencies>
194209
</dependencyManagement>
195210
<build>
@@ -234,4 +249,4 @@
234249
</plugins>
235250
</pluginManagement>
236251
</build>
237-
</project>
252+
</project>

0 commit comments

Comments
 (0)