Skip to content

Commit

Permalink
Update pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
jesperancinha committed Jun 30, 2022
1 parent 3a4b965 commit cab5a39
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion pom.xml
Expand Up @@ -42,6 +42,7 @@
<omni-coveragereporter-maven-plugin.version>0.3.0</omni-coveragereporter-maven-plugin.version>
<reactor-test.version>3.4.19</reactor-test.version>
<maven-plugin.version>3.0.0-M7</maven-plugin.version>
<kotlinx-coroutines-debug.version>1.6.3</kotlinx-coroutines-debug.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -190,6 +191,20 @@
<version>${reactor-test.version}</version>
<scope>test</scope>
</dependency>
<!-- This Dependency is added as a workaround for the following issue -->
<!--- https://github.com/Kotlin/kotlinx.coroutines/issues/3334 -->
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-debug</artifactId>
<version>${kotlinx-coroutines-debug.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-bom</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
<build>
Expand Down Expand Up @@ -234,4 +249,4 @@
</plugins>
</pluginManagement>
</build>
</project>
</project>

0 comments on commit cab5a39

Please sign in to comment.