Skip to content

Commit

Permalink
Maven: exclude xml-apis-ext from the uber jar, add separate SAC depen…
Browse files Browse the repository at this point in the history
…dency
  • Loading branch information
carlosame committed Sep 26, 2024
1 parent 70b8424 commit ccc8166
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,24 @@
<artifactId>batik-transcoder</artifactId>
<version>1.17</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>xml-apis</groupId>
<artifactId>xml-apis-ext</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-codec</artifactId>
<version>1.17</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>xml-apis</groupId>
<artifactId>xml-apis-ext</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>nu.validator</groupId>
Expand All @@ -76,6 +88,12 @@
<artifactId>jsoup</artifactId>
<version>1.18.1</version>
</dependency>
<!-- Needed due to xml-apis-ext exclusion -->
<dependency>
<groupId>org.w3c.css</groupId>
<artifactId>sac</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
<!-- Configure CSS4J repository -->
<repositories>
Expand Down

0 comments on commit ccc8166

Please sign in to comment.