You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 10, 2020. It is now read-only.
There are two projects in sbt that do not depend on other non-extracted sbt component:
// Runner for uniform test interfacelazyvaltestingProj= (project in file("testing")).
dependsOn(testAgentProj).
settings(
baseSettings,
name :="Testing",
libraryDependencies ++=Seq(testInterface, launcherInterface %Compile, ioProj, classpathProj, logProj)
)
// Testing agent for running tests in a separate process.lazyvaltestAgentProj= (project in file("testing") /"agent").
settings(
minimalSettings,
name :="Test Agent",
libraryDependencies += testInterface
)
Should we extract them to this repository? There's already a subproject name util-testing in this repository, so it may make sense.
Only project depending on this:
// Implementation and support code for defining actions.lazyvalactionsProj= (project in mainPath /"actions").
dependsOn (runProj, stdTaskProj, taskProj, testingProj).
settings(
testedBaseSettings,
name :="Actions",
libraryDependencies ++=Seq(classpathProj, completeProj, apiProj, compilerIntegrationProj, compilerIvyProj,
interfaceProj, ioProj, ivyProj, logProj, relationProj, trackingProj)
)
The text was updated successfully, but these errors were encountered:
There are two projects in sbt that do not depend on other non-extracted sbt component:
Should we extract them to this repository? There's already a subproject name
util-testing
in this repository, so it may make sense.Only project depending on this:
The text was updated successfully, but these errors were encountered: