Skip to content

Commit

Permalink
Temporary address log4j2 issue with JPMS
Browse files Browse the repository at this point in the history
  • Loading branch information
marko-bekhta committed Sep 11, 2024
1 parent 3948806 commit 684ba49
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build/parents/build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,9 @@
<!-- Test dependencies -->

<!-- >>> Common -->
<!--
NOTE: with the next upgrade of the log4j (to 2.24.1+) *REMOVE* the additional jspecify dependency added to the JPMS tests
-->
<version.log4j>2.24.0</version.log4j>
<version.junit>4.13.2</version.junit>
<version.junit-jupiter>5.11.0</version.junit-jupiter>
Expand Down
9 changes: 9 additions & 0 deletions integrationtest/java/modules/orm-elasticsearch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,15 @@
<version>${version.jakarta.enterprise}</version>
<scope>test</scope>
</dependency>
<!--
NOTE: Remove this dependency once the Log4j2 is updated to 2.24.1+
-->
<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,16 @@
<version>${version.jakarta.enterprise}</version>
<scope>test</scope>
</dependency>

<!--
NOTE: Remove this dependency once the Log4j2 is updated to 2.24.1+
-->
<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
Expand Down
10 changes: 10 additions & 0 deletions integrationtest/java/modules/pojo-standalone-elasticsearch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,16 @@
<artifactId>hibernate-search-util-internal-integrationtest-mapper-pojo-standalone</artifactId>
<scope>test</scope>
</dependency>

<!--
NOTE: Remove this dependency once the Log4j2 is updated to 2.24.1+
-->
<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 684ba49

Please sign in to comment.