Skip to content

Commit e446ae5

Browse files
committed
Merge remote-tracking branch 'origin/main' into generalizeScoring
2 parents 3f54800 + 94853fd commit e446ae5

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/maven.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
with:
1313
fetch-depth: 0
1414
- name: Set up JDK 11
15-
uses: actions/setup-java@v4
15+
uses: actions/setup-java@v5
1616
with:
1717
java-version: '11'
1818
distribution: 'adopt'

plugin/pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>com.fasterxml.jackson.core</groupId>
2525
<artifactId>jackson-annotations</artifactId>
26-
<version>${version.fasterxml.jackson}</version>
26+
<version>2.20</version>
2727
</dependency>
2828

2929
<dependency>
@@ -59,13 +59,13 @@
5959
<dependency>
6060
<groupId>commons-cli</groupId>
6161
<artifactId>commons-cli</artifactId>
62-
<version>1.9.0</version>
62+
<version>1.10.0</version>
6363
</dependency>
6464

6565
<dependency>
6666
<groupId>commons-io</groupId>
6767
<artifactId>commons-io</artifactId>
68-
<version>2.19.0</version>
68+
<version>2.20.0</version>
6969
</dependency>
7070

7171
<dependency>
@@ -77,13 +77,13 @@
7777
<dependency>
7878
<groupId>org.apache.commons</groupId>
7979
<artifactId>commons-csv</artifactId>
80-
<version>1.14.0</version>
80+
<version>1.14.1</version>
8181
</dependency>
8282

8383
<dependency>
8484
<groupId>org.apache.commons</groupId>
8585
<artifactId>commons-lang3</artifactId>
86-
<version>3.17.0</version>
86+
<version>3.18.0</version>
8787
</dependency>
8888

8989
<dependency>
@@ -95,13 +95,13 @@
9595
<dependency>
9696
<groupId>org.apache.httpcomponents.core5</groupId>
9797
<artifactId>httpcore5</artifactId>
98-
<version>5.3.4</version>
98+
<version>5.3.5</version>
9999
</dependency>
100100

101101
<dependency>
102102
<groupId>org.apache.maven</groupId>
103103
<artifactId>maven-plugin-api</artifactId>
104-
<version>3.9.10</version>
104+
<version>3.9.11</version>
105105
<scope>provided</scope>
106106
</dependency>
107107

@@ -140,7 +140,7 @@
140140
<dependency>
141141
<groupId>org.yaml</groupId>
142142
<artifactId>snakeyaml</artifactId>
143-
<version>2.4</version>
143+
<version>2.5</version>
144144
</dependency>
145145

146146
<!-- The following dependency might be an upgrade/replacement for jaxb.xml.bind.JAXBContext,
@@ -192,10 +192,10 @@
192192
</build>
193193

194194
<properties>
195-
<version.fasterxml.jackson>2.19.0</version.fasterxml.jackson>
195+
<version.fasterxml.jackson>2.20.0</version.fasterxml.jackson>
196196
<!-- 3.0.3+ version of eclipse.persistence requires jakarta.xml.bind instead of jaxb -->
197197
<version.eclipse.persistence>2.7.15</version.eclipse.persistence>
198-
<version.junit.jupiter>5.13.1</version.junit.jupiter>
198+
<version.junit.jupiter>5.13.4</version.junit.jupiter>
199199
</properties>
200200

201201
</project>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
<plugin>
118118
<groupId>org.apache.maven.plugins</groupId>
119119
<artifactId>maven-enforcer-plugin</artifactId>
120-
<version>3.5.0</version>
120+
<version>3.6.1</version>
121121
<dependencies>
122122
<dependency>
123123
<groupId>org.codehaus.mojo</groupId>
@@ -218,7 +218,7 @@
218218
<plugin>
219219
<groupId>com.diffplug.spotless</groupId>
220220
<artifactId>spotless-maven-plugin</artifactId>
221-
<version>2.44.5</version>
221+
<version>2.46.1</version>
222222
<configuration>
223223
<!-- optional: limit format enforcement to just the files changed by this
224224
feature branch -->

0 commit comments

Comments
 (0)