How to to do i reorder the execution of projects in a multi-project environment?

I am facing a problem with the projects execution order in a multi-project environment. Even after included my projects in which order has to be executed , it always executed in ascending order. My subprojects are- HelloWorld,Alpha,Beta and Neptune. My Projects execution should be , first “HellowWorld” should build ,next “Alpa”, next “Beta” and last “Neptune”. but presently it builds , first “Alpha”,next “Beta”, next “HelloWorld” and last “Neptune”.

Please help me out.

This is how my settings.gradle file

include ‘HelloWorld’, include ‘Alpha’, include ‘Beta’ include ‘Neptune’