Skip to content

Commit 20a33b9

Browse files
authored
Merge branch 'OWASP-Benchmark:master' into master
2 parents 3fa3d33 + 1680cb5 commit 20a33b9

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

.github/workflows/maven.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
with:
1313
fetch-depth: 0
1414
- name: Set up JDK 8
15-
uses: actions/setup-java@v3
15+
uses: actions/setup-java@v4
1616
with:
1717
java-version: '8'
1818
distribution: 'zulu'

pom.xml

+16-16
Original file line numberDiff line numberDiff line change
@@ -749,13 +749,13 @@
749749
<dependency>
750750
<groupId>org.apache.httpcomponents.client5</groupId>
751751
<artifactId>httpclient5</artifactId>
752-
<version>5.2.1</version>
752+
<version>5.3</version>
753753
</dependency>
754754

755755
<dependency>
756756
<groupId>org.apache.httpcomponents.core5</groupId>
757757
<artifactId>httpcore5</artifactId>
758-
<version>5.2.3</version>
758+
<version>5.2.4</version>
759759
</dependency>
760760

761761
<dependency>
@@ -795,7 +795,7 @@
795795
<dependency>
796796
<groupId>org.owasp.esapi</groupId>
797797
<artifactId>esapi</artifactId>
798-
<version>2.5.2.0</version>
798+
<version>2.5.3.1</version>
799799
</dependency>
800800

801801
<dependency>
@@ -898,13 +898,13 @@
898898
<plugin>
899899
<groupId>org.apache.maven.plugins</groupId>
900900
<artifactId>maven-clean-plugin</artifactId>
901-
<version>3.3.1</version>
901+
<version>3.3.2</version>
902902
</plugin>
903903

904904
<plugin>
905905
<groupId>org.apache.maven.plugins</groupId>
906906
<artifactId>maven-compiler-plugin</artifactId>
907-
<version>3.11.0</version>
907+
<version>3.12.1</version>
908908
<configuration>
909909
<fork>true</fork>
910910
<meminitial>1000m</meminitial>
@@ -978,19 +978,19 @@
978978
<plugin>
979979
<groupId>org.apache.maven.plugins</groupId>
980980
<artifactId>maven-jxr-plugin</artifactId>
981-
<version>3.3.0</version>
981+
<version>3.3.1</version>
982982
</plugin>
983983

984984
<plugin>
985985
<groupId>org.apache.maven.plugins</groupId>
986986
<artifactId>maven-pmd-plugin</artifactId>
987-
<version>3.21.0</version>
987+
<version>3.21.2</version>
988988
</plugin>
989989

990990
<plugin>
991991
<groupId>org.apache.maven.plugins</groupId>
992992
<artifactId>maven-project-info-reports-plugin</artifactId>
993-
<version>3.4.5</version>
993+
<version>3.5.0</version>
994994
</plugin>
995995

996996
<plugin>
@@ -1003,7 +1003,7 @@
10031003
<!-- Note: This uses the maven-fluido-skin version specified next. The skin is referenced in src/site/site.xml. -->
10041004
<groupId>org.apache.maven.plugins</groupId>
10051005
<artifactId>maven-site-plugin</artifactId>
1006-
<version>4.0.0-M11</version>
1006+
<version>4.0.0-M13</version>
10071007
<dependencies>
10081008
<!-- Explicitly declare these dependencies so the versions plugin and library bots will flag available updates. The fluido-skin plugin is referenced in src/site/site.xml using the same fluido version property. -->
10091009
<dependency>
@@ -1017,7 +1017,7 @@
10171017
<plugin>
10181018
<groupId>org.apache.maven.plugins</groupId>
10191019
<artifactId>maven-surefire-plugin</artifactId>
1020-
<version>3.2.1</version>
1020+
<version>3.2.3</version>
10211021
</plugin>
10221022

10231023
<plugin>
@@ -1032,13 +1032,13 @@
10321032
<plugin>
10331033
<groupId>org.codehaus.cargo</groupId>
10341034
<artifactId>cargo-maven3-plugin</artifactId>
1035-
<version>1.10.10</version>
1035+
<version>1.10.11</version>
10361036
</plugin>
10371037

10381038
<plugin>
10391039
<groupId>org.codehaus.mojo</groupId>
10401040
<artifactId>versions-maven-plugin</artifactId>
1041-
<version>2.16.1</version>
1041+
<version>2.16.2</version>
10421042
</plugin>
10431043

10441044
<!-- SpotBugs Static Analysis - the successor to FindBugs -->
@@ -1230,13 +1230,13 @@
12301230
<version.fluido>2.0.0-M8</version.fluido>
12311231
<!-- hibernate is up to rev 6+. But 4.0.0. causes this error: symbol: org.hibernate.classic.Session not found -->
12321232
<version.hibernate>3.6.10.Final</version.hibernate>
1233-
<version.spotbugs.maven>4.7.3.6</version.spotbugs.maven>
1234-
<version.spotbugs>4.8.0</version.spotbugs>
1233+
<version.spotbugs.maven>4.8.2.0</version.spotbugs.maven>
1234+
<version.spotbugs>4.8.3</version.spotbugs>
12351235
<!-- Spring 6.x requires Java 17 -->
1236-
<version.springframework>5.3.30</version.springframework>
1236+
<version.springframework>5.3.31</version.springframework>
12371237
<!-- Tomcat 10 moves from Java EE to Jakarta EE, moving packages javax.* to jakarta.* - code changes likely required to address this change. -->
12381238
<tomcat.major.version>9</tomcat.major.version>
1239-
<version.tomcat>9.0.82</version.tomcat>
1239+
<version.tomcat>9.0.84</version.tomcat>
12401240
<tomcat.url>https://archive.apache.org/dist/tomcat/tomcat-${tomcat.major.version}/v${version.tomcat}/bin/apache-tomcat-${version.tomcat}.zip</tomcat.url>
12411241
</properties>
12421242

0 commit comments

Comments
 (0)