Skip to content

Commit 55304b5

Browse files
committedMar 27, 2024
Dependency convergence exclusions
Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
1 parent 2ca6b78 commit 55304b5

File tree

4 files changed

+21
-1
lines changed

4 files changed

+21
-1
lines changed
 

‎connectors/apache-connector/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@
4545
<groupId>commons-codec</groupId>
4646
<artifactId>commons-codec</artifactId>
4747
</exclusion>
48+
<exclusion>
49+
<groupId>commons-logging</groupId>
50+
<artifactId>commons-logging</artifactId>
51+
</exclusion>
4852
</exclusions>
4953
</dependency>
5054

‎connectors/jetty-http2-connector/pom.xml

+12
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,22 @@
4848
<dependency>
4949
<groupId>org.eclipse.jetty.http2</groupId>
5050
<artifactId>http2-client</artifactId>
51+
<exclusions>
52+
<exclusion>
53+
<groupId>org.slf4j</groupId>
54+
<artifactId>slf4j-api</artifactId>
55+
</exclusion>
56+
</exclusions>
5157
</dependency>
5258
<dependency>
5359
<groupId>org.eclipse.jetty.http2</groupId>
5460
<artifactId>http2-http-client-transport</artifactId>
61+
<exclusions>
62+
<exclusion>
63+
<groupId>org.slf4j</groupId>
64+
<artifactId>slf4j-api</artifactId>
65+
</exclusion>
66+
</exclusions>
5567
</dependency>
5668
<dependency>
5769
<groupId>org.eclipse.jetty</groupId>

‎examples/groovy/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@
3434
<groupId>com.fasterxml.jackson.core</groupId>
3535
<artifactId>jackson-core</artifactId>
3636
</exclusion>
37+
<exclusion>
38+
<groupId>com.fasterxml.jackson.core</groupId>
39+
<artifactId>jackson-databind</artifactId>
40+
</exclusion>
3741
<exclusion>
3842
<groupId>org.junit.jupiter</groupId>
3943
<artifactId>junit-jupiter-api</artifactId>

‎examples/helloworld-spring-annotations/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
<dependency>
7474
<groupId>commons-logging</groupId>
7575
<artifactId>commons-logging</artifactId>
76-
<version>1.2</version>
76+
<version>${commons.logging.version}</version>
7777
</dependency>
7878
<dependency>
7979
<groupId>org.glassfish.jersey.test-framework.providers</groupId>

0 commit comments

Comments
 (0)