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