Skip to content

Commit

Permalink
bump mill
Browse files Browse the repository at this point in the history
  • Loading branch information
mberndt123 committed Jun 5, 2024
1 parent 1b237ee commit f1116e5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .mill-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.0
0.11.7
9 changes: 4 additions & 5 deletions build.sc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import $ivy.`de.tototec::de.tobiasroeser.mill.vcs.version::0.1.4`
import $ivy.`de.tototec::de.tobiasroeser.mill.vcs.version::0.4.0`
import de.tobiasroeser.mill.vcs.version._

import mill._
Expand All @@ -8,9 +8,8 @@ import scala.concurrent.duration.{Duration, DurationInt}

def scala213 = "2.13.14"
def scala212 = "2.12.19"
def scalaVersions = Seq(scala213, scala212)

object publish extends Cross[Publish](scalaVersions: _*)
object publish extends Cross[Publish](scala213, scala212)

object Deps {

Expand All @@ -30,7 +29,7 @@ object Deps {
def utest = ivy"com.lihaoyi::utest::0.7.10"
}

class Publish(val crossScalaVersion: String) extends CrossScalaModule with Published {
trait Publish extends CrossScalaModule with Published {
def ivyDeps = super.ivyDeps() ++ Seq(
Deps.coursierCache,
Deps.coursierCore,
Expand All @@ -45,7 +44,7 @@ class Publish(val crossScalaVersion: String) extends CrossScalaModule with Publi
"--release",
"8"
)
object test extends Tests {
object test extends ScalaTests {
def ivyDeps = super.ivyDeps() ++ Seq(
Deps.utest
)
Expand Down

0 comments on commit f1116e5

Please sign in to comment.