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 cask to 0.9.5 #4213

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion scalalib/src/mill/scalalib/JavaModule.scala
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ trait JavaModule
* {{{
* def depManagement = super.depManagement() ++ Agg(
* ivy"com.lihaoyi::os-lib:0.11.3",
* ivy"com.lihaoyi::cask:0.9.4".exclude("org.slf4j", "slf4j-api")
* ivy"com.lihaoyi::cask:0.9.5".exclude("org.slf4j", "slf4j-api")
* )
* }}}
*/
Expand Down
10 changes: 5 additions & 5 deletions scalalib/test/src/mill/scalalib/BomTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ object BomTests extends TestSuite {

object extraExclude extends JavaModule with TestPublishModule {
def ivyDeps = Agg(
ivy"com.lihaoyi:cask_2.13:0.9.4"
ivy"com.lihaoyi:cask_2.13:0.9.5"
)
def depManagement = Agg(
// The exclude should be automatically added to the dependency above
Expand All @@ -117,7 +117,7 @@ object BomTests extends TestSuite {

object exclude extends JavaModule with TestPublishModule {
def ivyDeps = Agg(
ivy"com.lihaoyi:cask_2.13:0.9.4"
ivy"com.lihaoyi:cask_2.13:0.9.5"
)
def depManagement = Agg(
ivy"org.java-websocket:Java-WebSocket:1.5.2"
Expand All @@ -131,7 +131,7 @@ object BomTests extends TestSuite {

object onlyExclude extends JavaModule with TestPublishModule {
def ivyDeps = Agg(
ivy"com.lihaoyi:cask_2.13:0.9.4"
ivy"com.lihaoyi:cask_2.13:0.9.5"
)
def depManagement = Agg(
ivy"org.java-websocket:Java-WebSocket"
Expand Down Expand Up @@ -478,7 +478,7 @@ object BomTests extends TestSuite {
test("extraExclude") - UnitTester(modules, null).scoped { implicit eval =>
isInClassPath(
modules.depMgmt.extraExclude,
"cask_2.13-0.9.4.jar",
"cask_2.13-0.9.5.jar",
jarCheck = Some { jarName =>
!jarName.startsWith("slf4j-api-")
}
Expand All @@ -488,7 +488,7 @@ object BomTests extends TestSuite {
test("transitiveExtraExclude") - UnitTester(modules, null).scoped { implicit eval =>
isInClassPath(
modules.depMgmt.extraExclude.transitive,
"cask_2.13-0.9.4.jar",
"cask_2.13-0.9.5.jar",
Seq(modules.depMgmt.extraExclude),
jarCheck = Some { jarName =>
!jarName.startsWith("slf4j-api-")
Expand Down
Loading