mirror of https://github.com/sbt/sbt.git
Merge pull request #5318 from eed3si9n/wip/doc-scalainstance
Remove actions/doc-scala-instance
This commit is contained in:
commit
e4131814e7
|
|
@ -1,7 +0,0 @@
|
||||||
class A {
|
|
||||||
def x = 3
|
|
||||||
}
|
|
||||||
class B
|
|
||||||
object B {
|
|
||||||
implicit def bToA(b: B): A = new A
|
|
||||||
}
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
lazy val a = project.settings(
|
|
||||||
scalaVersion := "2.12.2",
|
|
||||||
scalaInstance in (Compile, doc) := (scalaInstance in b).value,
|
|
||||||
// 2.10.1-only, so this will only succeed if `doc` recognizes the more specific scalaInstance scoped to `doc`
|
|
||||||
scalacOptions in (Compile, doc) += "-implicits"
|
|
||||||
)
|
|
||||||
|
|
||||||
lazy val b = project.settings(
|
|
||||||
scalaVersion := "2.12.2"
|
|
||||||
)
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
> a/doc
|
|
||||||
Loading…
Reference in New Issue