Skip to content

Commit

Permalink
scala: 2.13.5 → 2.13.11
Browse files Browse the repository at this point in the history
Release flag had to be added manually, additional context
gradle/gradle#23962
  • Loading branch information
fabianhjr committed Jun 8, 2023
1 parent 2e1afd3 commit 10d35ed
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build.gradle
Expand Up @@ -12,8 +12,8 @@ repositories {
}

dependencies {
implementation 'org.scala-lang:scala-library:2.13.5!!'
implementation 'org.scala-lang:scala-reflect:2.13.5!!'
implementation 'org.scala-lang:scala-library:2.13.11!!'
implementation 'org.scala-lang:scala-reflect:2.13.11!!'

implementation('org.java-websocket:Java-WebSocket:1.5.3')
implementation('org.jline:jline:3.5.1')
Expand Down Expand Up @@ -44,7 +44,8 @@ tasks.withType(ScalaCompile) {
scalaCompileOptions.additionalParameters = [
"-language:postfixOps",
"-Xfatal-warnings",
"-Ypatmat-exhaust-depth", "400"
"-Ypatmat-exhaust-depth", "400",
"-release", "11"
]
compileScala.sourceCompatibility = 11
compileScala.targetCompatibility = 11
Expand Down

0 comments on commit 10d35ed

Please sign in to comment.