Skip to content

Commit

Permalink
Update maven dependencies, JVM version and GitHub actions in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
borisskert committed May 10, 2024
1 parent 0659b33 commit aa16cfe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 8
java-version: 21

- name: Build
run: mvn -B -DskipTests compile
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<kotlin.code.style>official</kotlin.code.style>
<kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
<kotlin.language.version>1.5.32</kotlin.language.version>
<junit.version>5.8.2</junit.version>
<kotlin.compiler.jvmTarget>21</kotlin.compiler.jvmTarget>
<kotlin.language.version>1.9.24</kotlin.language.version>
<junit.version>5.10.2</junit.version>
</properties>

<repositories>
Expand Down Expand Up @@ -56,12 +56,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M6</version>
<version>3.2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M6</version>
<version>3.2.5</version>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit aa16cfe

Please sign in to comment.