Skip to content

Commit

Permalink
Add Scala 3.6 to ScalaRelease.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Boerman committed Dec 23, 2024
1 parent a2cfa3f commit 0044c19
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Dependencies/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.janboerman.scalaloader</groupId>
<artifactId>ScalaPluginLoader</artifactId>
<version>0.18.15-SNAPSHOT</version>
</parent>

<artifactId>Dependencies</artifactId>

<properties>
<maven.compiler.source>23</maven.compiler.source>
<maven.compiler.target>23</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ public final class ScalaRelease implements Comparable<ScalaRelease> {
public static final ScalaRelease SCALA_3_4 = new ScalaRelease("3.4");
/** The Scala 3.5.x series */
public static final ScalaRelease SCALA_3_5 = new ScalaRelease("3.5");
/** The Scala 3.6.x series */
public static final ScalaRelease SCALA_3_6 = new ScalaRelease("3.6");

private final String compatVersion;

Expand Down

0 comments on commit 0044c19

Please sign in to comment.