Skip to content

Commit

Permalink
[Hotfix] Dependent on log4j2 related packages in compile scope in the…
Browse files Browse the repository at this point in the history
… `ams-server` module (#2582)

Dependent on log4j2 related packages in compile scope in ams-server module
  • Loading branch information
zhoujinsong committed Feb 28, 2024
1 parent 4f08b4a commit bfdbee7
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions ams/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -215,12 +215,27 @@

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
<artifactId>log4j-slf4j-impl</artifactId>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<artifactId>log4j-api</artifactId>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<scope>compile</scope>
</dependency>

<dependency>
<!-- API bridge between log4j 1 and 2 -->
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
<scope>compile</scope>
</dependency>

<dependency>
Expand Down

0 comments on commit bfdbee7

Please sign in to comment.