Skip to content

Commit 45b5e6c

Browse files
authored
Merge pull request #1920 from lat-lon/fix/removeXmlApis-1917
Removed unnecessary XML APIs from dependencies
2 parents 831f2d0 + 7b6426d commit 45b5e6c

2 files changed

Lines changed: 12 additions & 9 deletions

File tree

deegree-tests/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,6 @@
118118
<groupId>org.slf4j</groupId>
119119
<artifactId>slf4j-api</artifactId>
120120
</dependency>
121-
<dependency>
122-
<groupId>xml-apis</groupId>
123-
<artifactId>xml-apis</artifactId>
124-
</dependency>
125121
<dependency>
126122
<groupId>jakarta.servlet</groupId>
127123
<artifactId>jakarta.servlet-api</artifactId>

pom.xml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -819,15 +819,16 @@
819819
<artifactId>jaxen</artifactId>
820820
<version>2.0.0</version>
821821
</dependency>
822-
<dependency>
823-
<groupId>xml-apis</groupId>
824-
<artifactId>xml-apis</artifactId>
825-
<version>1.4.01</version>
826-
</dependency>
827822
<dependency>
828823
<groupId>xerces</groupId>
829824
<artifactId>xercesImpl</artifactId>
830825
<version>2.12.2</version>
826+
<exclusions>
827+
<exclusion>
828+
<groupId>xml-apis</groupId>
829+
<artifactId>xml-apis</artifactId>
830+
</exclusion>
831+
</exclusions>
831832
</dependency>
832833
<dependency>
833834
<groupId>de.odysseus.staxon</groupId>
@@ -953,6 +954,12 @@
953954
<groupId>org.apache.xmlgraphics</groupId>
954955
<artifactId>batik-dom</artifactId>
955956
<version>${batik.version}</version>
957+
<exclusions>
958+
<exclusion>
959+
<groupId>xml-apis</groupId>
960+
<artifactId>xml-apis</artifactId>
961+
</exclusion>
962+
</exclusions>
956963
</dependency>
957964
<dependency>
958965
<groupId>org.apache.xmlgraphics</groupId>

0 commit comments

Comments
 (0)