Skip to content

Commit 1a99347

Browse files
committed
Upgraded deps and mvn plugins
1 parent 1347d7b commit 1a99347

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
java: ['17', '18']
10+
java: [ '17' ]
1111
name: JDK ${{ matrix.java }}
1212

1313
steps:

pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<version>3.0.1.M1-SNAPSHOT</version>
99

1010
<description>An Input/Output layer built on top of Java standard io and nio packages</description>
11-
<url>http://www.sejda.org</url>
11+
<url>https://www.sejda.org</url>
1212

1313
<issueManagement>
1414
<system>GitHub</system>
@@ -104,7 +104,7 @@
104104
<plugin>
105105
<groupId>org.apache.maven.plugins</groupId>
106106
<artifactId>maven-javadoc-plugin</artifactId>
107-
<version>3.4.0</version>
107+
<version>3.5.0</version>
108108
<executions>
109109
<execution>
110110
<id>attach-javadocs</id>
@@ -122,7 +122,7 @@
122122
<plugin>
123123
<groupId>org.apache.maven.plugins</groupId>
124124
<artifactId>maven-release-plugin</artifactId>
125-
<version>3.0.0-M5</version>
125+
<version>3.0.0</version>
126126
<configuration>
127127
<tagNameFormat>v@{project.version}</tagNameFormat>
128128
<preparationGoals>clean install</preparationGoals>
@@ -163,15 +163,15 @@
163163
<plugin>
164164
<groupId>org.apache.maven.plugins</groupId>
165165
<artifactId>maven-compiler-plugin</artifactId>
166-
<version>3.10.1</version>
166+
<version>3.11.0</version>
167167
<configuration>
168168
<release>17</release>
169169
</configuration>
170170
</plugin>
171171
<plugin>
172172
<groupId>org.apache.maven.plugins</groupId>
173173
<artifactId>maven-jar-plugin</artifactId>
174-
<version>3.2.2</version>
174+
<version>3.3.0</version>
175175
<configuration>
176176
<archive>
177177
<manifestEntries>
@@ -196,15 +196,15 @@
196196
<plugin>
197197
<groupId>org.apache.maven.plugins</groupId>
198198
<artifactId>maven-surefire-plugin</artifactId>
199-
<version>3.0.0-M7</version>
199+
<version>3.0.0</version>
200200
</plugin>
201201
</plugins>
202202
</build>
203203
<dependencies>
204204
<dependency>
205205
<groupId>org.slf4j</groupId>
206206
<artifactId>slf4j-api</artifactId>
207-
<version>2.0.0</version>
207+
<version>2.0.7</version>
208208
</dependency>
209209
<dependency>
210210
<groupId>org.sejda</groupId>
@@ -214,25 +214,25 @@
214214
<dependency>
215215
<groupId>ch.qos.logback</groupId>
216216
<artifactId>logback-classic</artifactId>
217-
<version>1.4.0</version>
217+
<version>1.4.6</version>
218218
<scope>test</scope>
219219
</dependency>
220220
<dependency>
221221
<groupId>ch.qos.logback</groupId>
222222
<artifactId>logback-core</artifactId>
223-
<version>1.4.0</version>
223+
<version>1.4.6</version>
224224
<scope>test</scope>
225225
</dependency>
226226
<dependency>
227227
<groupId>org.mockito</groupId>
228228
<artifactId>mockito-core</artifactId>
229-
<version>4.7.0</version>
229+
<version>5.3.0</version>
230230
<scope>test</scope>
231231
</dependency>
232232
<dependency>
233233
<groupId>org.junit.jupiter</groupId>
234234
<artifactId>junit-jupiter-engine</artifactId>
235-
<version>5.9.0</version>
235+
<version>5.9.2</version>
236236
<scope>test</scope>
237237
</dependency>
238238
<dependency>

0 commit comments

Comments
 (0)