Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion gradle/run.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ testClusters {
for (String p : installedPlugins) {
// check if its a local plugin first
if (project.findProject(':plugins:' + p) != null) {
plugin('plugins:' + p)
plugin(':plugins:' + p)
} else if (project.findProject(':sandbox:plugins:' + p) != null) {
plugin(':sandbox:plugins:' + p)
} else {
// attempt to fetch it from maven
project.repositories.mavenLocal()
Expand Down
Loading