GH-1070 - Remove dependency to Commons Logging.

The Structurizr Core library depended on by the documentation support artifact pulls in Commons Logging which conflicts with Spring Frameworks spring-jcl artifact. We now explicitly exclude the former to prevent warning logs at runtime.
This commit is contained in:
Oliver Drotbohm
2025-02-22 15:13:52 +01:00
parent c0c2825ad5
commit 44eac6c1bc

View File

@@ -27,6 +27,12 @@
<groupId>com.structurizr</groupId>
<artifactId>structurizr-core</artifactId>
<version>1.29.0</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>