I have tried to do the following
public AOPClassLoaderDeployer(int xmlRelativeOrder)
{
setStage(DeploymentStages.CLASSLOADER);
- //This needs to come after the classloader deployer
- setRelativeOrder(xmlRelativeOrder + 1);
+
+ //This makes it come after the ClassLoaderDeployer
+ setInput(ClassLoader.class);
}
This is just for trying it out, once it works I'll obviously remove
the constructor parameter