Port source-dependencies/replace-test-a

This commit is contained in:
Eugene Yokota 2016-03-29 02:17:19 -04:00
parent cc507a0cb7
commit 2c6138753e
2 changed files with 14 additions and 20 deletions

View File

@ -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))
()
}

View File

@ -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))
()
}
}