Skip to content

Commit

Permalink
Merge pull request #211 from lyemelev/73x-fix-common-io
Browse files Browse the repository at this point in the history
HAL-1882: Fix testsuite.next build failure caused by commons-io transitive dependencies (backport)
  • Loading branch information
OndrejKotek authored Dec 18, 2024
2 parents 9492709 + a50abd3 commit a217394
Show file tree
Hide file tree
Showing 3 changed files with 20 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 @@ -90,6 +90,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 @@ -151,6 +151,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
7 changes: 7 additions & 0 deletions tests/keycloak/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,11 @@
</plugin>
</plugins>
</build>

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

0 comments on commit a217394

Please sign in to comment.