mirror of https://github.com/sbt/sbt.git
Port source-dependencies/binary
This commit is contained in:
parent
0571b8ec17
commit
cc507a0cb7
|
|
@ -0,0 +1,6 @@
|
|||
lazy val dep = project
|
||||
|
||||
lazy val use = project.
|
||||
settings(
|
||||
unmanagedJars in Compile <+= packageBin in (dep, Compile) map Attributed.blank
|
||||
)
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
import sbt._
|
||||
import Import._
|
||||
import Keys._
|
||||
|
||||
object B extends Build
|
||||
{
|
||||
lazy val dep = Project("dep", file("dep"))
|
||||
lazy val use = Project("use", file("use")) settings(
|
||||
unmanagedJars in Compile <+= packageBin in (dep, Compile) map Attributed.blank
|
||||
)
|
||||
}
|
||||
Loading…
Reference in New Issue