From d45edb37ae21fdcfe434b95d6ff0c291c7487012 Mon Sep 17 00:00:00 2001 From: xuwei-k <6b656e6a69@gmail.com> Date: Mon, 14 Oct 2024 13:43:45 +0900 Subject: [PATCH] avoid deprecated `in` method --- src/sbt-test/dumpLicenseReport/aggregate-report/example.sbt | 2 +- src/sbt-test/dumpLicenseReport/anyproject-report/example.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sbt-test/dumpLicenseReport/aggregate-report/example.sbt b/src/sbt-test/dumpLicenseReport/aggregate-report/example.sbt index f83e2f8..ca3f46a 100644 --- a/src/sbt-test/dumpLicenseReport/aggregate-report/example.sbt +++ b/src/sbt-test/dumpLicenseReport/aggregate-report/example.sbt @@ -1,6 +1,6 @@ name := "example" -excludeDependencies in ThisBuild += "org.scala-lang" +ThisBuild / excludeDependencies += "org.scala-lang" lazy val one = project .in(file("one")) diff --git a/src/sbt-test/dumpLicenseReport/anyproject-report/example.sbt b/src/sbt-test/dumpLicenseReport/anyproject-report/example.sbt index 4ca578f..4ef7e4f 100644 --- a/src/sbt-test/dumpLicenseReport/anyproject-report/example.sbt +++ b/src/sbt-test/dumpLicenseReport/anyproject-report/example.sbt @@ -1,6 +1,6 @@ name := "example" -excludeDependencies in ThisBuild += "org.scala-lang" +ThisBuild / excludeDependencies += "org.scala-lang" lazy val one = project .in(file("one"))