mirror of
https://github.com/sbt/sbt.git
synced 2026-09-07 02:55:23 +02:00
Test to ensure join on Seq[Initialize[Task[T]]] keeps highest precedence
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import sbt._
|
||||
import Keys._
|
||||
|
||||
object Build extends Build
|
||||
{
|
||||
lazy val root = Project("root", file(".")) dependsOn(b,c) settings(
|
||||
compile in Compile <<= Seq(b, c).map(p => compile in (p, Compile)).join.map( as => (inc.Analysis.Empty /: as)(_ ++ _) )
|
||||
)
|
||||
lazy val b = Project("b", file("b"))
|
||||
lazy val c = Project("c", file("c"))
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
> compile
|
||||
Reference in New Issue
Block a user