Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ trait MillGitCross
with StyleModule
with GitVersionedPublishModule
with SonatypeCentralPublishModule:
val millVersion = crossValue
override def scalaVersion = "3.7.4"
val millVersion = crossValue
override def scalaVersion = "3.7.4"
override def scalacOptions = super.scalacOptions() ++ ScalacOptions.tokensForVersion(
ScalaVersion.unsafeFromString(scalaVersion()),
ScalacOptions.default + source3 ++ fatalWarningOptions
Expand All @@ -38,7 +38,7 @@ trait MillGitCross

object test extends ScalaTests with TestModule.Munit with StyleModule:
override def mvnDeps = Seq(
mvn"org.scalameta::munit::1.2.1",
mvn"org.scalameta::munit::1.2.2",
mvn"com.lihaoyi::mill-testkit:$millVersion"
)
override def forkEnv = Map("MILL_EXECUTABLE_PATH" -> millExecutable.assembly().path.toString)
Expand All @@ -51,7 +51,7 @@ trait MillGitCross

override def artifactName = s"mill-git_mill${millBinaryVersion(millVersion)}"
override def publishVersion = GitVersionModule.version(withSnapshotSuffix = true)()
def pomSettings = PomSettings(
def pomSettings = PomSettings(
description = "A git version plugin for Mill build tool",
organization = "com.goyeau",
url = "https://github.com/joan38/mill-git",
Expand Down