Skip to content

Commit

Permalink
Merge pull request #6152 from stweil/dependencies
Browse files Browse the repository at this point in the history
Fix some smaller issues in dependencies
  • Loading branch information
solth authored Dec 7, 2024
2 parents f0c0ed4 + 894c93b commit 705a45f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
1 change: 1 addition & 0 deletions Kitodo-DataManagement/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.el</groupId>
Expand Down
4 changes: 4 additions & 0 deletions Kitodo-Docket/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
</dependency>
<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox-io</artifactId>
</dependency>
<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox</artifactId>
Expand Down
14 changes: 11 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
<jhove.version>1.20.1</jhove.version>
<myfaces.version>2.3.10</myfaces.version>
<mysql.version>8.2.0</mysql.version>
<pdfbox.version>3.0.3</pdfbox.version>
<poi.version>5.2.5</poi.version>
<primefaces.extensions.version>8.0.5</primefaces.extensions.version>
<saxon.version>9.9.1-8</saxon.version>
Expand Down Expand Up @@ -332,15 +333,21 @@ from system library in Java 11+ -->
<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox</artifactId>
<version>3.0.3</version>
<version>${pdfbox.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox-io</artifactId>
<version>${pdfbox.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>${poi.version}</version>
<exclusions>
<!-- exlcude stax-api which provides javax.xml.namespace package
<!-- exclude stax-api which provides javax.xml.namespace package
already included in system modules of Java 11+ -->
<exclusion>
<groupId>stax</groupId>
Expand Down Expand Up @@ -387,7 +394,7 @@ from system library in Java 11+ -->
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<!-- exlcude xml-apis which provides javax.xml.transform package
<!-- exclude xml-apis which provides javax.xml.transform package
already included in system modules of Java 11+ -->
<exclusion>
<groupId>xml-apis</groupId>
Expand Down Expand Up @@ -804,6 +811,7 @@ from system library in Java 11+ -->
<groupId>org.xmlunit</groupId>
<artifactId>xmlunit-matchers</artifactId>
<version>2.9.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>se.jiderhamn.classloader-leak-prevention</groupId>
Expand Down

0 comments on commit 705a45f

Please sign in to comment.