Skip to content

Commit

Permalink
HAL-1882: Fix testsuite.next build failure caused by commons-io trans…
Browse files Browse the repository at this point in the history
…itive dependencies
  • Loading branch information
OndrejKotek authored and dcihak committed Jan 25, 2024
1 parent 9b78646 commit 09c8dbc
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 0 deletions.
4 changes: 4 additions & 0 deletions common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
</dependencies>

<build>
Expand Down
9 changes: 9 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,15 @@
<groupId>org.jboss.arquillian.graphene</groupId>
<artifactId>arquillian-browser-screenshooter</artifactId>
<version>${graphene.version}</version>
<exclusions>
<!-- https://issues.sonatype.org/browse/MVNCENTRAL-244
The artifact is in the depency tree with the correct group id thanks to other dependencies.
We manange the version of commons-io:commons-io in this pom.xml -->
<exclusion>
<groupId>org.apache.commons</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.wildfly.arquillian</groupId>
Expand Down
4 changes: 4 additions & 0 deletions tests-configuration-management/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@
<groupId>org.wildfly.core</groupId>
<artifactId>wildfly-cli</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
</dependencies>

</project>
4 changes: 4 additions & 0 deletions tests-configuration-undertow/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@
<groupId>org.wildfly.core</groupId>
<artifactId>wildfly-cli</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
</dependencies>

</project>
7 changes: 7 additions & 0 deletions tests/keycloak/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,11 @@
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
</dependencies>
</project>

0 comments on commit 09c8dbc

Please sign in to comment.