Index unrecoverable error

cancel
Showing results for 
Search instead for 
Did you mean: 
sufo
Established Member II

Re: Index unrecoverable error

Jump to solution

What we are doing when developing extensions (AMP files) is, that we double check jars included in alfresco.war (tedious work sometimes as you have to take into account also dependencies of dependencies) and just put "provided" to POM.

		<dependency>
			<groupId>commons-io</groupId>
			<artifactId>commons-io</artifactId>
			<version>2.4</version>
			<scope>provided</scope>
		</dependency>

It's worth of time spent because AMP doesn't include these jars, so you will not replace alfresco.war jars. Worst that can happen is that your extension doesn't work, but you don't risk seemingly "random" errors that can arise weeks after the deployment of your AMP.

upforsin
Senior Member

Re: Index unrecoverable error

Jump to solution

Thank you guys,

now the problem is fully resolved.

I would carefully check dependencies next time.

howkymike
Alfresco Developer