Skip to content

Commit

Permalink
Fix LinkageError org.slf4j.ILoggerFactory loader constraint violation
Browse files Browse the repository at this point in the history
  • Loading branch information
dkayiwa committed Nov 4, 2024
1 parent d7b9fad commit d8ba8d5
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion omod/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@
<version>${openMRSVersion}</version>
<scope>provided</scope>
<type>jar</type>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down Expand Up @@ -75,6 +81,12 @@
<version>${openMRSVersion}</version>
<type>pom</type>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- End OpenMRS core -->
Expand Down Expand Up @@ -115,7 +127,13 @@
<groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId>
<version>2.9.2</version>
</dependency>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>commons-io</groupId>
Expand Down

0 comments on commit d8ba8d5

Please sign in to comment.