Skip to content

Commit e76df16

Browse files
authored
Ignore opensaml dependencies (#6693)
Commit f27de63 introduced a new version of opensaml. That version brought jcl-over-slf4j-1.7.5.jar, jul-to-slf4j-1.7.5.jar, and log4j-over-slf4j-1.7.5.jar as dependencies, which causes Agents and Usages to not generate logs. In order to make the logs to work again, this PR intends to exclude these dependencies while building the packages.
1 parent c290cbc commit e76df16

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -623,6 +623,20 @@
623623
<groupId>org.opensaml</groupId>
624624
<artifactId>opensaml</artifactId>
625625
<version>${cs.opensaml.version}</version>
626+
<exclusions>
627+
<exclusion>
628+
<groupId>org.slf4j</groupId>
629+
<artifactId>jcl-over-slf4j</artifactId>
630+
</exclusion>
631+
<exclusion>
632+
<groupId>org.slf4j</groupId>
633+
<artifactId>jul-to-slf4j</artifactId>
634+
</exclusion>
635+
<exclusion>
636+
<groupId>org.slf4j</groupId>
637+
<artifactId>log4j-over-slf4j</artifactId>
638+
</exclusion>
639+
</exclusions>
626640
</dependency>
627641
<dependency>
628642
<groupId>org.owasp.esapi</groupId>

0 commit comments

Comments
 (0)