Skip to content

Commit

Permalink
- Workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
jesperancinha committed Jun 30, 2022
1 parent 9d6b7cf commit d6b1cdf
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion pom.xml
Expand Up @@ -72,6 +72,7 @@
<jackson-core.version>2.13.3</jackson-core.version>
<spring-boot-starter-parent.version>2.7.1</spring-boot-starter-parent.version>
<omni-coveragereporter-maven-plugin.version>0.3.0</omni-coveragereporter-maven-plugin.version>
<kotlinx-coroutines-debug.version>1.6.3</kotlinx-coroutines-debug.version>
</properties>

<packaging>pom</packaging>
Expand All @@ -90,7 +91,19 @@
<type>pom</type>
<scope>import</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>
<exclusions>
<exclusion>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-bom</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
Expand Down

0 comments on commit d6b1cdf

Please sign in to comment.