0

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).

k10ml
  • 116
  • 9

1 Answers1

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 . 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 – Jeff Potts Oct 29 '18 at 21:18