Change order of loading mutable contents
Hi.
We have a multisite project in AEM like this:
<project >
<groupId>com.adobe.aem.project</groupId>
<artifactId>main</artifactId>
<packaging>pom</packaging>
<version>1.0.0-SNAPSHOT</version>
<modules> <module>site1</module>
<module>site2</module>
<module>site3</module>
<module>site4</module>
<module>site5</module>
<module>dispatcher</module>
</modules>
</project>
In site1´s repoinit we are executing an operation that must be the first, before other sites execute their own repoinits
The problem is that the order is not the same in stage and production environments so our configuration is not been loaded in the right order.
Are there any way of priorize or choose the order in the load of this mutable contents?
Thanks in advance.
