Hi!
I have some questions about Export-Package.
Example:
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Export-Package>
com.duan2ping.api.model;exclude:="*Dao";include="*Service,*Activetor,*Info,ShellTable"
</Export-Package>
......
</instructions>
</configuration>
</plugin>
[image: Selection_117.png]
① Why "include=" and "include:=" are right ,But exclude can only be ":="
② The plugin display is
"exclude:="*Dao";include="*Service,*Activetor,*Info,ShellTable"" ,But the
"header bundle ID" shows
"exclude:=*Dao;include="*Service,*Activetor,*Info,ShellTable"".
Missing " " symbol.
best regards
duan