Merge pull request #14590 from rjernst/use_projects_prefix

Use projectsPrefix in project references for vagrant tests
This commit is contained in:
Ryan Ernst 2015-11-06 11:08:29 -08:00
commit 3cabff9880
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}")
}
}
}