Hi,

In the pom.xml file of Aries Trader sample blog web, there is a special instruction <_wab/> added at the end of the configuration of the felix maven plugin

<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Web-ContextPath>/blog</Web-ContextPath>
<Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
<Private-Package>org.apache.aries.samples.blog.web.*</Private-Package>
<Export-Package>!org.apache.aries.samples.blog.web.*</Export-Package>
<Import-Package>
                            javax.servlet*;version=2.5,
                            *
</Import-Package>
<_wab/>
</instructions>
</configuration>

I have digged into the code of Aries but haven't found info about what is this command supposed to do. Can someone provide info about this command ? Is this instrcution used to generated the content of the bundle or WAR ?

Regards,

Charles

Reply via email to