Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scala3-compiler, scala3-library to 3.3.3 #28

Merged
merged 1 commit into from Mar 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.sc
Expand Up @@ -38,15 +38,15 @@ trait JavaMainClassNativeImage extends NativeImage {
}

object `scala3-graal-processor` extends ScalaModule {
def scalaVersion = "3.3.1"
def scalaVersion = "3.3.3"
def mainClass = Some("scala.cli.graal.CoursierCacheProcessor")
def ivyDeps = Agg(
ivy"org.virtuslab.scala-cli::scala3-graal:1.1.2"
)
}

object `java-class-name` extends ScalaModule with JavaMainClassNativeImage with JavaClassNamePublishModule {
def scalaVersion = "3.3.1"
def scalaVersion = "3.3.3"

def nativeImageClassPath = T {
// adapted from https://github.com/VirtusLab/scala-cli/blob/b19086697401827a6f8185040ceb248d8865bf21/build.sc#L732-L744
Expand Down Expand Up @@ -116,7 +116,7 @@ object `java-class-name` extends ScalaModule with JavaMainClassNativeImage with
}

object `java-class-name-tests` extends ScalaModule {
def scalaVersion = "3.3.1"
def scalaVersion = "3.3.3"
trait Tests extends super.Tests {
def launcher: T[PathRef]
def ivyDeps = super.ivyDeps() ++ Seq(
Expand Down