Skip to content

Commit 47450fa

Browse files
committed
Upgrade dependencies
1 parent 3325072 commit 47450fa

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
restore-keys: |
2424
${{ runner.os }}-maven-
2525
26-
- name: Set up JDK 11
26+
- name: Set up JDK 17
2727
uses: actions/setup-java@v2
2828
with:
29-
java-version: '11'
29+
java-version: '17'
3030
distribution: 'adopt'
3131

3232
- name: Checkstyle

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
5757

5858
<!-- Test Dependencies -->
59-
<junit-jupiter.version>5.9.0</junit-jupiter.version>
59+
<junit-jupiter.version>5.10.0</junit-jupiter.version>
6060
<testcontainers.version>1.18.3</testcontainers.version>
6161
<cucumber.version>7.13.0</cucumber.version>
6262

@@ -68,7 +68,7 @@
6868
<checkstyle.url>
6969
https://raw.githubusercontent.com/pepperkit/checkstyle/v1.0.2-9.2/checkstyle.xml
7070
</checkstyle.url>
71-
<jacoco-plugin.version>0.8.8</jacoco-plugin.version>
71+
<jacoco-plugin.version>0.8.10</jacoco-plugin.version>
7272

7373
<!-- Excluded since is tested via system tests. -->
7474
<sonar.exclusions>**GitHooksManager.java</sonar.exclusions>
@@ -147,7 +147,7 @@
147147
<dependency>
148148
<groupId>org.junit.platform</groupId>
149149
<artifactId>junit-platform-suite</artifactId>
150-
<version>1.9.1</version>
150+
<version>1.10.0</version>
151151
<scope>test</scope>
152152
</dependency>
153153
</dependencies>
@@ -205,7 +205,7 @@
205205
<dependency>
206206
<groupId>com.puppycrawl.tools</groupId>
207207
<artifactId>checkstyle</artifactId>
208-
<version>10.12.0</version>
208+
<version>10.12.2</version>
209209
</dependency>
210210
</dependencies>
211211
<configuration>
@@ -219,7 +219,7 @@
219219
<!-- Testing -->
220220
<plugin>
221221
<artifactId>maven-surefire-plugin</artifactId>
222-
<version>3.0.0</version>
222+
<version>3.1.2</version>
223223
<configuration>
224224
<excludes>
225225
<exclude>**/*SysTest.java</exclude>

0 commit comments

Comments
 (0)