Skip to content

Commit 2c5f7b2

Browse files
committed
Dependency updates
- only point releases - tests pass on JDK 24 - added JDK 23 to test matrix
1 parent cd5139a commit 2c5f7b2

File tree

5 files changed

+24
-24
lines changed

5 files changed

+24
-24
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
fail-fast: false
3434
matrix:
35-
java: [ '11', '17', '21' ]
35+
java: [ '11', '17', '21', '23' ]
3636

3737
steps:
3838
- name: Set up JDK ${{ matrix.java }}

app/pom.xml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -38,28 +38,28 @@ limitations under the License.
3838
<java-activation.version>1.2.0</java-activation.version>
3939
<jstl.version>1.2</jstl.version>
4040
<angular.version>1.7.8</angular.version>
41-
<ant.version>1.10.14</ant.version>
42-
<asm.version>9.7</asm.version>
41+
<ant.version>1.10.15</ant.version>
42+
<asm.version>9.7.1</asm.version>
4343
<bouncycastle.version>1.70</bouncycastle.version>
4444
<commons-validator.version>1.9.0</commons-validator.version>
45-
<commons-beanutils.version>1.9.4</commons-beanutils.version>
46-
<commons-codec.version>1.17.1</commons-codec.version>
47-
<commons-text.version>1.12.0</commons-text.version>
48-
<commons-lang3.version>3.16.0</commons-lang3.version>
49-
<eclipse-link.version>4.0.4</eclipse-link.version>
45+
<commons-beanutils.version>1.10.0</commons-beanutils.version>
46+
<commons-codec.version>1.18.0</commons-codec.version>
47+
<commons-text.version>1.13.0</commons-text.version>
48+
<commons-lang3.version>3.17.0</commons-lang3.version>
49+
<eclipse-link.version>4.0.5</eclipse-link.version>
5050
<guice.version>7.0.0</guice.version>
51-
<log4j2.version>2.23.1</log4j2.version>
52-
<lucene.version>9.11.1</lucene.version>
51+
<log4j2.version>2.24.3</log4j2.version>
52+
<lucene.version>9.12.1</lucene.version> <!-- lucene 10 requires JDK 21 -->
5353
<oauth-core.version>20100527</oauth-core.version>
5454
<maven-war.version>3.4.0</maven-war.version>
55-
<maven-surefire.version>3.5.0</maven-surefire.version>
55+
<maven-surefire.version>3.5.2</maven-surefire.version>
5656
<maven-antrun.version>1.0b3</maven-antrun.version>
5757
<rome.version>1.19.0</rome.version> <!-- locked in place since next version removes popono -->
5858
<slf4j.version>2.0.16</slf4j.version>
5959
<spring.version>5.3.39</spring.version>
6060
<spring.security.version>5.8.14</spring.security.version>
6161
<struts.version>2.5.29</struts.version> <!-- .30+ breaks selenium tests -->
62-
<velocity.version>2.3</velocity.version>
62+
<velocity.version>2.4.1</velocity.version>
6363
<webjars.version>1.6</webjars.version>
6464
<ws-commons-util.version>1.0.2</ws-commons-util.version>
6565
<xmlrpc-version>3.1.3</xmlrpc-version>
@@ -273,7 +273,7 @@ limitations under the License.
273273
<dependency>
274274
<groupId>org.webjars</groupId>
275275
<artifactId>jquery-ui</artifactId>
276-
<version>1.13.3</version>
276+
<version>1.14.1</version>
277277
</dependency>
278278

279279
<dependency>
@@ -581,14 +581,14 @@ limitations under the License.
581581
<dependency>
582582
<groupId>org.mockito</groupId>
583583
<artifactId>mockito-core</artifactId>
584-
<version>5.12.0</version>
584+
<version>5.15.2</version>
585585
<scope>test</scope>
586586
</dependency>
587587

588588
<dependency>
589589
<groupId>org.instancio</groupId>
590590
<artifactId>instancio-junit</artifactId>
591-
<version>5.0.1</version>
591+
<version>5.3.0</version>
592592
<scope>test</scope>
593593
</dependency>
594594

@@ -795,7 +795,7 @@ limitations under the License.
795795
<plugin>
796796
<groupId>org.codehaus.mojo</groupId>
797797
<artifactId>buildnumber-maven-plugin</artifactId>
798-
<version>3.2.0</version>
798+
<version>3.2.1</version>
799799
<executions>
800800
<execution>
801801
<phase>validate</phase>

app/src/main/webapp/WEB-INF/jsps/tiles/head.jsp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ You can override it with your own file via WEB-INF/tiles-def.xml
77

88
<script src="<s:url value='/webjars/jquery/3.7.1/jquery.min.js' />"></script>
99

10-
<script src="<s:url value='/webjars/jquery-ui/1.13.3/jquery-ui.min.js' />"></script>
11-
<link href="<s:url value='/webjars/jquery-ui/1.13.3/jquery-ui.css' />" rel="stylesheet" />
10+
<script src="<s:url value='/webjars/jquery-ui/1.14.1/jquery-ui.min.js' />"></script>
11+
<link href="<s:url value='/webjars/jquery-ui/1.14.1/jquery-ui.css' />" rel="stylesheet" />
1212

1313
<script src="<s:url value='/webjars/jquery-validation/1.20.0/jquery.validate.min.js' />"></script>
1414

it-selenium/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@
4848
<dependency>
4949
<groupId>org.seleniumhq.selenium</groupId>
5050
<artifactId>selenium-java</artifactId>
51-
<version>4.23.1</version>
51+
<version>4.28.0</version>
5252
<scope>test</scope>
5353
</dependency>
5454

5555
<dependency>
5656
<groupId>org.seleniumhq.selenium</groupId>
5757
<artifactId>selenium-firefox-driver</artifactId>
58-
<version>4.23.1</version>
58+
<version>4.28.0</version>
5959
<exclusions>
6060
<exclusion>
6161
<groupId>javax.servlet</groupId>
@@ -128,7 +128,7 @@
128128
<!-- Activates integration tests (by default, classes under tests that end with "IT") -->
129129
<plugin>
130130
<artifactId>maven-failsafe-plugin</artifactId>
131-
<version>3.5.0</version>
131+
<version>3.5.2</version>
132132
<executions>
133133
<execution>
134134
<goals>

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ limitations under the License.
4343
<derby.version>10.11.1.1</derby.version>
4444
<java-mail.version>1.4.7</java-mail.version>
4545
<jaxb.version>2.3.1</jaxb.version>
46-
<jetty.plugin.version>10.0.23</jetty.plugin.version> <!-- Jetty 11 requires Jakarta package names -->
46+
<jetty.plugin.version>10.0.24</jetty.plugin.version> <!-- Jetty 11 requires Jakarta package names -->
4747
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4848
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
4949
<roller.version>6.1.4</roller.version>
@@ -93,7 +93,7 @@ limitations under the License.
9393
<plugin>
9494
<groupId>org.codehaus.mojo</groupId>
9595
<artifactId>versions-maven-plugin</artifactId>
96-
<version>2.17.1</version>
96+
<version>2.18.0</version>
9797
<configuration>
9898
<rulesUri>file:version-rules.xml</rulesUri>
9999
</configuration>
@@ -107,7 +107,7 @@ limitations under the License.
107107
<dependency>
108108
<groupId>org.junit.jupiter</groupId>
109109
<artifactId>junit-jupiter-engine</artifactId>
110-
<version>5.11.0</version>
110+
<version>5.11.4</version>
111111
<scope>test</scope>
112112
</dependency>
113113
</dependencies>

0 commit comments

Comments
 (0)