mirror of
https://github.com/sbt/sbt.git
synced 2026-09-03 08:34:34 +02:00
Port source-dependencies/binary
This commit is contained in:
@@ -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
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user