mirror of https://github.com/sbt/sbt.git
Port source-dependencies/replace-test-a
This commit is contained in:
parent
cc507a0cb7
commit
2c6138753e
|
|
@ -0,0 +1,14 @@
|
|||
import java.net.URLClassLoader
|
||||
|
||||
lazy val root = (project in file(".")).
|
||||
settings(
|
||||
TaskKey[Unit]("check-first") <<= checkTask("First"),
|
||||
TaskKey[Unit]("check-second") <<= checkTask("Second")
|
||||
)
|
||||
|
||||
def checkTask(className: String) =
|
||||
fullClasspath in Configurations.Runtime map { runClasspath =>
|
||||
val cp = runClasspath.map(_.data.toURI.toURL).toArray
|
||||
Class.forName(className, false, new URLClassLoader(cp))
|
||||
()
|
||||
}
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
import sbt._
|
||||
import Import._
|
||||
import Keys._
|
||||
import java.net.URLClassLoader
|
||||
|
||||
object B extends Build
|
||||
{
|
||||
lazy val root = Project("root", file(".")) settings( ss : _*)
|
||||
|
||||
def ss = Seq(
|
||||
TaskKey[Unit]("check-first") <<= checkTask("First"),
|
||||
TaskKey[Unit]("check-second") <<= checkTask("Second")
|
||||
)
|
||||
private def checkTask(className: String) =
|
||||
fullClasspath in Configurations.Runtime map { runClasspath =>
|
||||
val cp = runClasspath.map(_.data.toURI.toURL).toArray
|
||||
Class.forName(className, false, new URLClassLoader(cp))
|
||||
()
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue