Description
The tiles-el JAR file has an OSGi Import-Package entry for "org.apache.el". This is only necessary if one uses the TomcatExpressionFactoryFactory class, so the import should be optional. This can be achieved by adding the following plugin to the tiles-el POM file:
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Import-Package>
org.apache.el; resolution:=optional,
*
</Import-Package>
</instructions>
</configuration>
</plugin>