Deprecate externalPom

Ref #5493
This commit is contained in:
Eugene Yokota 2021-01-24 23:36:02 -05:00
parent 83012a9644
commit 1275051974
2 changed files with 9 additions and 1 deletions

View File

@ -157,7 +157,7 @@ final class ContextUtil[C <: blackbox.Context](val ctx: C) {
case _ => ()
}
@deprecated("1.3.0", "Use that variant that specifies the M instance types to exclude")
@deprecated("Use that variant that specifies the M instance types to exclude", since = "1.3.0")
/**
* A function that checks the provided tree for illegal references to M instances defined in the
* expression passed to the macro and for illegal dereferencing of M instances.

View File

@ -4279,6 +4279,10 @@ trait BuildExtra extends BuildCommon with DefExtra {
baseDirectory.value / name
}
@deprecated(
"externalIvyFile is not supported by Couriser, and will be removed in the future",
since = "1.5.0"
)
def externalIvyFile(
file: Initialize[File] = inBase("ivy.xml"),
iScala: Initialize[Option[ScalaModuleInfo]] = scalaModuleInfo
@ -4290,6 +4294,10 @@ trait BuildExtra extends BuildCommon with DefExtra {
managedScalaInstance.value
)
@deprecated(
"externalPom is not supported by Coursier, and will be removed in the future",
since = "1.5.0"
)
def externalPom(
file: Initialize[File] = inBase("pom.xml"),
iScala: Initialize[Option[ScalaModuleInfo]] = scalaModuleInfo,