Skip to content

Commit

Permalink
Merge pull request #890 from fl4via/UNDERTOW-1706
Browse files Browse the repository at this point in the history
[UNDERTOW-1706] Fix issue with wildfly-common dependency and maven en…
  • Loading branch information
fl4via authored May 15, 2020
2 parents c74b8ff + daea64d commit 38d577d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
<version.xnio>3.8.0.Final</version.xnio>
<!-- TODO remove this dependency once xnio upgrades to latest jboss threads -->
<version.org.jboss.threads>3.1.0.Final</version.org.jboss.threads>
<version.org.wildfly.common>1.5.4.Final</version.org.wildfly.common>

<!-- jacoco -->
<version.org.jacoco>0.7.9</version.org.jacoco>
Expand Down Expand Up @@ -448,12 +449,30 @@
<groupId>org.jboss.xnio</groupId>
<artifactId>xnio-nio</artifactId>
<version>${version.xnio}</version>
<exclusions>
<exclusion>
<groupId>org.wildfly.common</groupId>
<artifactId>wildfly-common</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.jboss.threads</groupId>
<artifactId>jboss-threads</artifactId>
<version>${version.org.jboss.threads}</version>
<exclusions>
<exclusion>
<groupId>org.wildfly.common</groupId>
<artifactId>wildfly-common</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.wildfly.common</groupId>
<artifactId>wildfly-common</artifactId>
<version>${version.org.wildfly.common}</version>
</dependency>

<dependency>
Expand Down

0 comments on commit 38d577d

Please sign in to comment.