Skip to content

Commit

Permalink
Add missing "test" scope to some dependencies
Browse files Browse the repository at this point in the history
The missing scopes were reported by `mvn dependency:analyze`.

Signed-off-by: Stefan Weil <[email protected]>
  • Loading branch information
stweil committed Oct 31, 2024
1 parent 9a8b3c4 commit 894c93b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
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
10 changes: 9 additions & 1 deletion 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,7 +333,13 @@ 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>
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 894c93b

Please sign in to comment.