Skip to content

Commit

Permalink
Updated Java and Scala for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Nov 29, 2023
1 parent 5ba5e2b commit f2d510e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [20, 17, 11, 8]
java: [21, 17, 11, 8]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<scala.version>2.13.10</scala.version>
<scala.compat.version>2.13</scala.compat.version>
<scala.version>3.3.1</scala.version>
<scala.compat.version>3</scala.compat.version>
</properties>
<dependencies>
<dependency>
Expand All @@ -49,7 +49,7 @@
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<artifactId>scala3-library_${scala.compat.version}</artifactId>
<version>${scala.version}</version>
<scope>test</scope>
</dependency>
Expand Down Expand Up @@ -80,13 +80,13 @@
<dependency>
<groupId>com.typesafe.slick</groupId>
<artifactId>slick_${scala.compat.version}</artifactId>
<version>3.4.1</version>
<version>3.5.0-M5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<version>1.7.26</version>
<version>2.0.9</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit f2d510e

Please sign in to comment.