Build: Use projectsPrefix in project references for vagrant tests

It is important we use projectsPrefix whenever addinga direct project
dependency, so that attachment still works.
This commit is contained in:
Ryan Ernst 2015-11-06 10:52:19 -08:00
parent c71cc0f21d
commit 634c495e3d
1 changed files with 2 additions and 2 deletions

View File

@ -33,14 +33,14 @@ configurations {
}
dependencies {
test project(path: ':distribution:tar', configuration: 'archives')
test project("${projectsPrefix}:distribution:tar")
// NOCOMMMIT: we need the rpm and deb!
// test project(path: ':distribution:rpm', configuration: 'archives')
// test project(path: ':distribution:deb', configuration: 'archives')
// Collect all the plugins
for (Project subproj : project.rootProject.subprojects) {
if (subproj.path.startsWith(':plugins:')) {
test project(subproj.path)
test project("${projectsPrefix}${subproj.path}")
}
}
}