This content has been marked as final.
Show 1 reply
-
1. Re: ArchiveExportException when deploying artifact
xavi.arias.segui Oct 31, 2013 2:18 PM (in response to xavi.arias.segui)Resolved, the problem was in the Arquillian configuration file configured with:
<engine>
<property name="deploymentExportPath">target/deployment</property>
</engine>
I have changed to a property-relative path, which is filtered by Maven when deploying:
<engine>
<property name="deploymentExportPath">${project.build.directory}/deployment</property>
</engine>