After every deployment,I have to apply share extension modules explicitly in Alfresco share URL(http://localhost:8081/share/page/modules/deploy).Is there any way these modules get applied in order required(Soon after,as we deploy amps).
Asked
Active
Viewed 168 times
0
-
1Check
true in the module xml file. – Muralidharan Deenathayalan Apr 01 '17 at 06:34 -
that worked, since modules are interdependent i needed forced order as well. which worked with this tag
2 or 3 , lower the number ,higher the priority – k10ml Apr 04 '17 at 12:45
1 Answers
4
for enabling auto deployment
<autoDeploy>true</autoDeploy>
for maintaining order
<auto-deploy-index>2</auto-deploy-index>
In the share module xml files,lower the number ,higher the priority

k10ml
- 116
- 9
-
It will be really good if you can add the source of information.Good to know this info as well. – Krutik Jayswal Apr 04 '17 at 18:51
-
it is
and – Jeff Potts Oct 29 '18 at 21:18. The source code that references auto-deploy-index is https://github.com/Alfresco/share/blob/6b3555f30d141f3ebc828aecb090203240e3f085/surf/spring-surf/spring-surf/src/main/java/org/springframework/extensions/surf/ModuleDeploymentService.java#L402