Skip to content

Commit b7da308

Browse files
authored
Fix commons-io mismatch for pax dependencies (#6986)
1 parent 02f1126 commit b7da308

6 files changed

Lines changed: 36 additions & 0 deletions

File tree

  • catalog
  • platform
    • admin/modules/admin-modules-docs
    • platform-paxweb-jettyconfig
    • security
      • filter/security-filter-web-sso
      • servlet

catalog/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,12 @@
380380
<groupId>org.ops4j.pax.web</groupId>
381381
<artifactId>pax-web-spi</artifactId>
382382
<version>${pax.web.version}</version>
383+
<exclusions>
384+
<exclusion>
385+
<groupId>commons-io</groupId>
386+
<artifactId>commons-io</artifactId>
387+
</exclusion>
388+
</exclusions>
383389
</dependency>
384390
<dependency>
385391
<groupId>org.osgi</groupId>

platform/admin/modules/admin-modules-docs/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@
5555
<groupId>org.ops4j.pax.web</groupId>
5656
<artifactId>pax-web-api</artifactId>
5757
<version>${pax.web.version}</version>
58+
<exclusions>
59+
<exclusion>
60+
<groupId>commons-io</groupId>
61+
<artifactId>commons-io</artifactId>
62+
</exclusion>
63+
</exclusions>
5864
</dependency>
5965
<dependency>
6066
<groupId>org.ops4j.pax.web</groupId>

platform/platform-paxweb-jettyconfig/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,12 @@
7878
<dependency>
7979
<groupId>org.ops4j.pax.web</groupId>
8080
<artifactId>pax-web-api</artifactId>
81+
<exclusions>
82+
<exclusion>
83+
<groupId>commons-io</groupId>
84+
<artifactId>commons-io</artifactId>
85+
</exclusion>
86+
</exclusions>
8187
</dependency>
8288
<dependency>
8389
<groupId>org.eclipse.jetty</groupId>

platform/security/filter/security-filter-web-sso/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@
6363
<dependency>
6464
<groupId>org.ops4j.pax.web</groupId>
6565
<artifactId>pax-web-api</artifactId>
66+
<exclusions>
67+
<exclusion>
68+
<groupId>commons-io</groupId>
69+
<artifactId>commons-io</artifactId>
70+
</exclusion>
71+
</exclusions>
6672
</dependency>
6773
<dependency>
6874
<groupId>org.ops4j.pax.web</groupId>

platform/security/servlet/security-servlet-logout-endpoint/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@
5151
<groupId>org.ops4j.pax.web</groupId>
5252
<artifactId>pax-web-api</artifactId>
5353
<version>${pax.web.version}</version>
54+
<exclusions>
55+
<exclusion>
56+
<groupId>commons-io</groupId>
57+
<artifactId>commons-io</artifactId>
58+
</exclusion>
59+
</exclusions>
5460
</dependency>
5561
<dependency>
5662
<groupId>org.ops4j.pax.web</groupId>

platform/security/servlet/security-servlet-logout/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,12 @@
105105
<groupId>org.ops4j.pax.web</groupId>
106106
<artifactId>pax-web-api</artifactId>
107107
<version>${pax.web.version}</version>
108+
<exclusions>
109+
<exclusion>
110+
<groupId>commons-io</groupId>
111+
<artifactId>commons-io</artifactId>
112+
</exclusion>
113+
</exclusions>
108114
</dependency>
109115
<dependency>
110116
<groupId>org.ops4j.pax.web</groupId>

0 commit comments

Comments
 (0)