Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 26 additions & 26 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.13.1</version>
<version>1.15.0</version>
</dependency>

<!--Log4j-2 libraries-->
Expand Down Expand Up @@ -250,7 +250,7 @@
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
<version>1.9.0</version>
<version>1.10.1</version>
<exclusions>
<!-- Excluded this low version to avoid triggering security issue -->
<exclusion>
Expand Down Expand Up @@ -278,7 +278,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-digester3</artifactId>
<version>3.2</version>
<version>3.3</version>
<exclusions>
<exclusion>
<groupId>commons-beanutils</groupId>
Expand All @@ -295,7 +295,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.26.0</version>
<version>1.28.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand All @@ -308,7 +308,7 @@
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>3.11.1</version>
<version>3.12.0</version>
</dependency>

<!-- Added higher version to avoid security issue, suggested by GitHub Dependabot -->
Expand Down Expand Up @@ -556,7 +556,7 @@
<dependency>
<groupId>com.twelvemonkeys.common</groupId>
<artifactId>common-lang</artifactId>
<version>3.12.0</version>
<version>3.13.0</version>
</dependency>

<!-- Glassfish JSTL 1.2.5 implementation (javax namespace for Servlet 4.0 compatibility) -->
Expand Down Expand Up @@ -807,12 +807,12 @@
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
<version>3.5.3</version>
<version>3.5.4</version>
</dependency>
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>javase</artifactId>
<version>3.5.3</version>
<version>3.5.4</version>
</dependency>

<!-- chip / ping libararies -->
Expand Down Expand Up @@ -1166,12 +1166,12 @@
<dependency>
<groupId>org.owasp.encoder</groupId>
<artifactId>encoder-jsp</artifactId>
<version>1.2.3</version>
<version>1.4.0</version>
</dependency>
<dependency>
<groupId>org.owasp.encoder</groupId>
<artifactId>encoder</artifactId>
<version>1.2.1</version>
<version>1.4.0</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -1204,7 +1204,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
<version>1.4.0</version>
<version>1.5.0</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.codehaus.jettison/jettison -->
Expand All @@ -1217,7 +1217,7 @@
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>24.1.0</version>
<version>26.0.2-1</version>
<scope>compile</scope>
</dependency>

Expand Down Expand Up @@ -1267,7 +1267,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.8.0</version>
<version>5.21.0</version>
<scope>test</scope>
</dependency>

Expand All @@ -1277,7 +1277,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.24.2</version>
<version>3.27.6</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -1316,7 +1316,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.4.8-jre</version>
<version>33.5.0-jre</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.xhtmlrenderer/flying-saucer-pdf -->
Expand Down Expand Up @@ -1446,7 +1446,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.11</version>
<version>0.8.15</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -1642,30 +1642,30 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.27.0</version>
<version>3.28.0</version>
<configuration>
<!-- Target JDK version -->
<targetJdk>21</targetJdk>

<!-- Custom ruleset -->
<rulesets>
<ruleset>utils/pmd_rules.xml</ruleset>
</rulesets>

<!-- Analysis configuration -->
<includeTests>false</includeTests>
<minimumTokens>100</minimumTokens>
<printFailingErrors>true</printFailingErrors>
<linkXRef>false</linkXRef>

<!-- Performance settings -->
<analysisCache>true</analysisCache>
<analysisCacheLocation>${project.build.directory}/pmd/pmd.cache</analysisCacheLocation>

<!-- Output formats -->
<format>html</format>
<outputDirectory>${project.build.directory}/pmd</outputDirectory>

<!-- Exclude generated code and known legacy files -->
<excludeRoots>
<excludeRoot>target/generated-sources</excludeRoot>
Expand All @@ -1679,20 +1679,20 @@
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>7.10.0</version>
<version>7.20.0</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>7.10.0</version>
<version>7.20.0</version>
</dependency>
</dependencies>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
<version>3.5.4</version>
<executions>
<!-- Override default test execution -->
<execution>
Expand Down Expand Up @@ -1891,7 +1891,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>5.8.0</version>
<version>5.21.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down