forked from coursier/dependency
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This pr just updates a handful of stuff. The reason is that it was failing in the [Steward Runs](VirtusLab/scala-steward-repos#98 (comment)). So this should ensure that the steward plugin doesn't have any issues. Note that I do rip out some of the custom stuff you have for sonatype publishing and just replace it with https://github.com/ckipp01/mill-ci-release mainly because it does almost exactly what you were doing in here. Let me know if that's not ok and I can revert it.
- Loading branch information
Showing
6 changed files
with
26 additions
and
116 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.9.7 | ||
0.10.10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
import mill._, scalalib._ | ||
|
||
object Scala { | ||
def scala212 = "2.12.13" | ||
def scala213 = "2.13.6" | ||
def scala3 = "3.0.0" | ||
def scala212 = "2.12.17" | ||
def scala213 = "2.13.10" | ||
def scala3 = "3.2.0" | ||
def all = Seq(scala212, scala213, scala3) | ||
} | ||
|
||
object Deps { | ||
def expecty = ivy"com.eed3si9n.expecty::expecty:0.15.4" | ||
def munit = ivy"org.scalameta::munit:0.7.29" | ||
def expecty = ivy"com.eed3si9n.expecty::expecty:0.16.0" | ||
def munit = ivy"org.scalameta::munit:1.0.0-M7" | ||
def scalaReflect(sv: String) = ivy"org.scala-lang:scala-reflect:$sv" | ||
} | ||
|
||
object Versions { | ||
def mdoc = "2.2.12" | ||
def mdoc = "2.3.6" | ||
} |
This file was deleted.
Oops, something went wrong.