blob: ce9c14281dc0cc60a35ce3fec232da59ac3d0604 [file] [log] [blame]
Karl Paulsf87ac142007-07-06 22:36:17 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Stuart McCulloch93de6492007-12-16 15:59:05 +00002<html><head><title>Apache Felix - Maven Bundle Plugin (BND)</title>
Karl Paulsf87ac142007-07-06 22:36:17 +00003
4
5
6
7 <link rel="stylesheet" href="maven-bundle-plugin-bnd_files/site.css" type="text/css" media="all">
Karl Paulsf87ac142007-07-06 22:36:17 +00008 <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"></head><body>
Stuart McCulloch93de6492007-12-16 15:59:05 +00009 <div class="title"><div class="logo"><a href="http://felix.apache.org/site/index.html"><img alt="Apache Felix" src="maven-bundle-plugin-bnd_files/logo.png" border="0"></a></div><div class="header"><a href="http://www.apache.org/"><img alt="Apache" src="maven-bundle-plugin-bnd_files/apache.png" border="0"></a></div></div>
Karl Paulsf87ac142007-07-06 22:36:17 +000010 <div class="menu">
Stuart McCulloch93de6492007-12-16 15:59:05 +000011<ul>
12 <li><a href="http://felix.apache.org/site/index.html" title="Index">home</a></li>
13 <li><a href="http://felix.apache.org/site/news.html" title="news">news</a></li>
14 <li><a href="http://felix.apache.org/site/status.html" title="status">status</a></li>
15 <li><a href="http://felix.apache.org/site/license.html" title="license">license</a></li>
16 <li><span class="nobr"><a href="http://felix.apache.org/site/downloads.cgi" title="Visit page outside Confluence" rel="nofollow">downloads<sup><img class="rendericon" src="maven-bundle-plugin-bnd_files/linkext7.gif" alt="" align="absmiddle" border="0" height="7" width="7"></sup></a></span></li>
17 <li><a href="http://felix.apache.org/site/documentation.html" title="documentation">documentation</a></li>
18 <li><a href="http://felix.apache.org/site/mailinglists.html" title="mailinglists">mailing lists</a></li>
19 <li><span class="nobr"><a href="http://cwiki.apache.org/confluence/x/O-" title="Visit page outside Confluence" rel="nofollow">wiki<sup><img class="rendericon" src="maven-bundle-plugin-bnd_files/linkext7.gif" alt="" align="absmiddle" border="0" height="7" width="7"></sup></a></span></li>
20 <li><a href="http://felix.apache.org/site/committers.html" title="committers">committers</a></li>
21 <li><a href="http://felix.apache.org/site/faq.html" title="faq">faq</a></li>
22 <li><a href="http://felix.apache.org/site/roadmap.html" title="roadmap">roadmap</a></li>
23 <li><a href="http://felix.apache.org/site/sourcecode.html" title="sourcecode">source code</a></li>
24 <li><a href="http://felix.apache.org/site/codingstandards.html" title="codingstandards">coding standards</a></li>
25 <li><a href="http://felix.apache.org/site/issuetracking.html" title="issuetracking">issue tracking</a></li>
26 <li><a href="http://felix.apache.org/site/dependencies.html" title="dependencies">dependencies</a></li>
27 <li><span class="nobr"><a href="http://www.apache.org/" title="Visit page outside Confluence" rel="nofollow">apache software foundation<sup><img class="rendericon" src="maven-bundle-plugin-bnd_files/linkext7.gif" alt="" align="absmiddle" border="0" height="7" width="7"></sup></a></span></li>
28 <li><span class="nobr"><a href="http://www.apache.org/foundation/sponsorship.html" title="Visit page outside Confluence" rel="nofollow">sponsorship<sup><img class="rendericon" src="maven-bundle-plugin-bnd_files/linkext7.gif" alt="" align="absmiddle" border="0" height="7" width="7"></sup></a></span></li>
29 <li><span class="nobr"><a href="http://www.apache.org/foundation/thanks.html" title="Visit page outside Confluence" rel="nofollow">sponsors<sup><img class="rendericon" src="maven-bundle-plugin-bnd_files/linkext7.gif" alt="" align="absmiddle" border="0" height="7" width="7"></sup></a></span></li>
30</ul> </div>
Karl Paulsf87ac142007-07-06 22:36:17 +000031 <div class="main">
32<h1><a name="MavenBundlePlugin(BND)-BundlePluginforMaven"></a>Bundle Plugin for Maven</h1>
33
34<p>This plugin for Maven 2 is based on the <span class="nobr"><a href="http://www.aqute.biz/Code/Bnd" title="Visit page outside Confluence" rel="nofollow">BND<sup><img class="rendericon" src="maven-bundle-plugin-bnd_files/linkext7.gif" alt="" align="absmiddle" border="0" height="7" width="7"></sup></a></span>
35tool from Peter Kriens. The way BND works is by treating your project
36as a big collection of classes (e.g., project code, dependencies, and
37the class path). The way you create a bundle with BND is to tell it the
38content of the bundle's JAR file as a subset of the available classes.
39This plugin wraps BND to make it work specifically with the Maven 2
40project structure and to provide it with reasonable default behavior
41for Maven 2 projects.</p>
42
Stuart McCulloch0340ae42008-02-22 11:27:18 +000043<p>Since the 1.4.0 release, this plugin also aims to automate OBR (OSGi
44Bundle Repository) management. It helps manage a local OBR for your
45local Maven repository, and also supports remote OBRs for bundle
46distribution. The plug-in automatically computes bundle capabilities
47and requirements, using a combination of Bindex and Maven metadata.</p>
48
Karl Paulsf87ac142007-07-06 22:36:17 +000049<p><a name="MavenBundlePlugin(BND)-simpleexample"></a></p>
50
51<h1><a name="MavenBundlePlugin(BND)-SimpleExample"></a>Simple Example</h1>
52
53<p>Rather than going straight to a detailed list of plugin features, we
54will first look at a simple example of how to use the plugin to give an
55immediate flavor. A detailed "<a href="#MavenBundlePlugin%2528BND%2529-howto" title="how-to on Maven Bundle Plugin (BND)">how to</a>" will follow.</p>
56
57<p>Assume that we have a simple bundle project that has a pubic API package an several implementation packages, such as:</p>
Stuart McCulloch93de6492007-12-16 15:59:05 +000058
Karl Paulsf87ac142007-07-06 22:36:17 +000059<div class="preformatted"><div class="preformattedContent">
60<pre>org.foo.myproject.api
61org.foo.myproject.impl1
62org.foo.myproject.impl2
63...
64</pre>
65</div></div>
Stuart McCulloch93de6492007-12-16 15:59:05 +000066
Karl Paulsf87ac142007-07-06 22:36:17 +000067<p>If we also assume that we have a bundle activator in one of the implementation packages, then the <tt>&lt;plugins&gt;</tt> section of the POM file for this bundle project would look like this:</p>
Stuart McCulloch93de6492007-12-16 15:59:05 +000068
Karl Paulsf87ac142007-07-06 22:36:17 +000069<div class="preformatted"><div class="preformattedContent">
70<pre>...
71&lt;plugins&gt;
72 &lt;plugin&gt;
73 &lt;groupId&gt;org.apache.felix&lt;/groupId&gt;
74 &lt;artifactId&gt;maven-bundle-plugin&lt;/artifactId&gt;
75 &lt;extensions&gt;true&lt;/extensions&gt;
76 &lt;configuration&gt;
77 &lt;instructions&gt;
78 &lt;Export-Package&gt;org.foo.myproject.api&lt;/Export-Package&gt;
79 &lt;Private-Package&gt;org.foo.myproject.*&lt;/Private-Package&gt;
80 &lt;Bundle-Activator&gt;org.foo.myproject.impl1.Activator&lt;/Bundle-Activator&gt;
81 &lt;/instructions&gt;
82 &lt;/configuration&gt;
83 &lt;/plugin&gt;
84&lt;/plugins&gt;
85...
86</pre>
87</div></div>
Stuart McCulloch93de6492007-12-16 15:59:05 +000088
Karl Paulsf87ac142007-07-06 22:36:17 +000089<p>The <tt>&lt;Export-Package&gt;</tt> and <tt>&lt;Private-Package&gt;</tt> instructions tell the plugin about the contents of the resulting bundle JAR file. The <tt>&lt;Export-Package&gt;</tt> instruction tells the plugin which of the available packages to copy into the bundle <b>and</b> export, while the <tt>&lt;Private-Package&gt;</tt> instruction indicates which of the available packages to copy into the bundle <b>but not</b>
90export. If the two sets overlap, as they do in the case, then the
91export takes precedence. Since we did not specify any values for any
92other bundle manifest headers, they will assume default values which
93are described <a href="#MavenBundlePlugin%2528BND%2529-defaultbehavior" title="default-behavior on Maven Bundle Plugin (BND)">below</a>. One specific behavior to highlight is that the plugin generates the <tt>Import-Package</tt>
94bundle manifest header based on the contents of the bundle, which means
95that you generally do not ever need to explicitly specify it yourself.
96That's it.</p>
97
98<h1><a name="MavenBundlePlugin(BND)-Features"></a>Features</h1>
99
100<p>The BND library underlying the plugin defines instructions to direct
101its behavior. For this Maven plugin, these instructions are issued in
102the plugin configuration section of the POM file, as was illustrated <a href="#MavenBundlePlugin%2528BND%2529-simpleexample" title="simple-example on Maven Bundle Plugin (BND)">above</a>. BND recognizes three types of instructions:</p>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000103
Karl Paulsf87ac142007-07-06 22:36:17 +0000104<ol>
105 <li><em>Manifest headers</em> - Any instruction that starts with
106a capital letter will appear in the resulting bundle's manifest file;
107the value for the header will either be copied, augmented, or generated
108by BND depending on the instruction.</li>
109 <li><em>Variables</em> - Any instruction starting with a lowercase letter is assumed to be a variable in the form of a name-value pair, such as <tt>version=3.0</tt>, that can be used for property substitution, but is not copied to the manifest.</li>
110 <li><em>Directives</em>
111- Any instruction starting with a '-' character is considered to be a
112directive that informs BND to perform some special processing and is
113not copied to the manifest.</li>
114</ol>
115
116
117<p>The remainder of this section covers the most important aspects of BND's instructions; for complete details refer to the <span class="nobr"><a href="http://www.aqute.biz/Code/Bnd" title="Visit page outside Confluence" rel="nofollow">BND documentation<sup><img class="rendericon" src="maven-bundle-plugin-bnd_files/linkext7.gif" alt="" align="absmiddle" border="0" height="7" width="7"></sup></a></span>.</p>
118
119<p><a name="MavenBundlePlugin(BND)-instructions"></a></p>
120
121<h2><a name="MavenBundlePlugin(BND)-Instructions"></a>Instructions</h2>
122
Karl Paulsf87ac142007-07-06 22:36:17 +0000123<h3><a name="MavenBundlePlugin(BND)-{{&lt;ExportPackage&gt;}}"></a><tt>&lt;Export-Package&gt;</tt></h3>
124
125<p>The <tt>&lt;Export-Package&gt;</tt> instruction is a list of
126packages for the bundle to export. These packages are copied into the
127resulting bundle JAR file from the available classes (i.e., project
128classes, dependencies, and class path); thus, it is possible to include
129classes into your bundle that are not associated with source files in
130your project. <tt>&lt;Export-Package&gt;</tt> can be specified with
131package patterns using the '*' wildcard. Also, it is possible to
132exclude packages using negation by starting the package pattern with
133'!'. Thus, non-negated patterns indicate which of the available
134packages to include in the bundle, whereas negated patterns indicate
135which should not be included in the bundle.</p>
136
137<p>The list of package patterns is ordered and earlier patterns are applied before later patterns. For example, if you specify "<tt>org.foo.*,!org.foo.impl</tt>" the second pattern has no effect since all <tt>org.foo</tt> packages have already been selected by the first pattern. Instead, you should specify "<tt>!org.foo.impl,org.foo.*</tt>", which will export all <tt>org.foo</tt> packages except <tt>org.foo.impl</tt>.</p>
138
139<p>Following standard OSGi R4 syntax, package patterns can include both
140directives and attributes, which will be copied appropriately into the
141generated Export-Package manifest header. Besides explicitly listing
142package version attributes, BND will also determine package versions by
143examining the source JAR file or from <tt>packageinfo</tt> files in the package directory.</p>
144
145<h3><a name="MavenBundlePlugin(BND)-{{&lt;PrivatePackage&gt;}}"></a><tt>&lt;Private-Package&gt;</tt></h3>
146
147<p>The <tt>&lt;Private-Package&gt;</tt> instruction is similar in every way to the <tt>&lt;Export-Package&gt;</tt> instruction, except for the fact that these packages will <b>not</b>
148be exported by the bundle. If a package is selected by both the export
149and private package headers, then the export takes precedence.</p>
150
151<h3><a name="MavenBundlePlugin(BND)-{{&lt;IncludeResource&gt;}}"></a><tt>&lt;Include-Resource&gt;</tt></h3>
152
153<p>The <tt>&lt;Include-Resource&gt;</tt> instruction is a list of
154arbitrary resources that should be copied into the bundle JAR file. The
155specified resources are declared as clauses that can have the following
156forms:</p>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000157
Karl Paulsf87ac142007-07-06 22:36:17 +0000158<div class="preformatted"><div class="preformattedContent">
159<pre>clause ::= assignment | inline | simple
160assignment ::= PATH '=' PATH
161simple ::= PATH
162inline ::= '@' PATH
163</pre>
164</div></div>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000165
Karl Paulsf87ac142007-07-06 22:36:17 +0000166<p>For the <tt>&lt;Include-Resource&gt;</tt> instruction, actual file paths are relative to the <tt>pom.xml</tt>, while file copy destinations are relative to the root of the resulting bundle JAR file. In the case of <tt>assignment</tt> or <tt>simple</tt> forms, the <tt>PATH</tt> parameter can point to a file or directory. The <tt>simple</tt>
167form will place the resource in the bundle JAR with only the file name,
168i.e., without any path component. For example, including <tt>src/main/resources/a/b.c</tt> will result in a resource <tt>b.c</tt> in the root of the bundle JAR. If the <tt>PATH</tt>
169points to a directory, the entire directory hierarchy is copied into
170the resulting bundle JAR file relative to the specified directory. If a
171specific resource must be placed into a subdirectory of the bundle jar,
172then use the <tt>assignment</tt> form, where the first path is the the
173destination path (including file name if the resource is a file) and
174the second path is the resource to copy. The <tt>inline</tt> form requires a ZIP or JAR file, which will be completely expanded in the bundle JAR.</p>
175
176<p>If a resource clause is specified inside of "{ ... }" brackets, then
177variable substitution will be performed on the resource, where
178variables in the resources are denoted with "${ ... }" syntax.</p>
179
Stuart McCulloch7c961f52008-01-02 08:56:07 +0000180<p>By default the bundle plugin converts the project's Maven resource directories into a single <tt>&lt;Include-Resource&gt;</tt> instruction. If you specify your own <tt>&lt;Include-Resource&gt;</tt> instruction, this will replace the generated one. To include the generated list of Maven resources in your own <tt>&lt;Include-Resource&gt;</tt> instruction just add {<tt>maven-resources</tt>} to the list and it will be expanded automatically.</p>
181
Karl Paulsf87ac142007-07-06 22:36:17 +0000182<h3><a name="MavenBundlePlugin(BND)-{{&lt;ImportPackage&gt;}}"></a><tt>&lt;Import-Package&gt;</tt></h3>
183
184<p>The <tt>&lt;Import-Package&gt;</tt> instruction is a list of
185packages that are required by the bundle's contained packages. The
186default for this header is "*", resulting in importing all referred
187packages. This header rarely has to be explicitly specified. However,
188in certain cases when there is an unwanted import, such an import can
189be removed by using a negation package pattern. The package patterns
190work in the same way as for <tt>&lt;Export-Package&gt;</tt>, which means they are ordered. For example, if you wanted to import all packages except <tt>org.foo.impl</tt> you would specify "<tt>!org.foo.impl,*</tt>"</p>
191
192<p><a name="MavenBundlePlugin(BND)-defaultbehavior"></a></p>
193
194<h2><a name="MavenBundlePlugin(BND)-DefaultBehavior"></a>Default Behavior</h2>
195
196<p>To use this plugin, very little information is required by BND. As
197part of the Maven integration, the plugin tries to set reasonable
198defaults for various instructions. For example:</p>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000199
Karl Paulsf87ac142007-07-06 22:36:17 +0000200<ul>
201 <li><tt>&lt;Bundle-SymbolicName&gt;</tt> is assumed to be "<tt>${groupId}.${artifactId</tt>}".</li>
Stuart McCulloch0340ae42008-02-22 11:27:18 +0000202 <li><tt>&lt;Export-Package&gt;</tt> is assumed to be "<tt>&lt;Bundle-SymbolicName&gt;.*</tt>", unless <tt>&lt;Private-Package&gt;</tt> is specified, then <tt>&lt;Export-Package&gt;</tt> is assumed to be empty.</li>
Karl Paulsf87ac142007-07-06 22:36:17 +0000203 <li><tt>&lt;Private-Package&gt;</tt> is assumed to be empty by default.</li>
204 <li><tt>&lt;Import-Package&gt;</tt> is assumed to be "<tt>*</tt>", which imports everything referred to by the bundle content, but not contained in the bundle.</li>
Stuart McCulloch7c961f52008-01-02 08:56:07 +0000205 <li><tt>&lt;Include-Resource&gt;</tt> is generated from the project's Maven resources, typically "<tt>src/main/resources/</tt>",
Karl Paulsf87ac142007-07-06 22:36:17 +0000206which will copy the specified project directory hierarchy into the
207resulting bundle JAR file, mirroring standard Maven behavior.</li>
208 <li><tt>&lt;Bundle-Version&gt;</tt> is assumed to be "<tt>${pom.version</tt>}" with '-' character separator of the qualifier replaced with a '.' character.</li>
209 <li><tt>&lt;Bundle-Name&gt;</tt> is assumed to be "<tt>${pom.name</tt>}".</li>
210 <li><tt>&lt;Bundle-Description&gt;</tt> is assumed to be "<tt>${pom.description</tt>}".</li>
211 <li><tt>&lt;Bundle-License&gt;</tt> is assumed to be "<tt>${pom.licenses</tt>}".</li>
212 <li><tt>&lt;Bundle-Vendor&gt;</tt> is assumed to be "<tt>${pom.organization.name</tt>}".</li>
213 <li><tt>&lt;Bundle-DocURL&gt;</tt> is assumed to be "<tt>${pom.organization.url</tt>}".</li>
214</ul>
215
216
Stuart McCulloch7c961f52008-01-02 08:56:07 +0000217<p>Since the plugin creates bundles for OSGi R4, it hard-codes <tt>Bundle-ManifestVersion</tt>
Karl Paulsf87ac142007-07-06 22:36:17 +0000218to be '2'. Additionally, it generates imports for every export to
219ensure package substitutability, which is very important when working
220with collaborating services. It is possible to override any of these
221values (except <tt>Bundle-ManifestVersion</tt>) just by specifying the desired value in the plugin configuration section of the POM file.</p>
222
223<p><a name="MavenBundlePlugin(BND)-howto"></a></p>
224
225<h1><a name="MavenBundlePlugin(BND)-Detailed&quot;HowTo&quot;"></a>Detailed "How To"</h1>
226
227<h2><a name="MavenBundlePlugin(BND)-GetMaven2"></a>Get Maven2</h2>
228
229<p>The first step in the process of using the plugin is downloading and
230installing the latest version of the Maven2 runtime. The latest Maven2
231release and instuctions for getting started with Maven2 can be found at
232the <span class="nobr"><a href="http://maven.apache.org/index.html" title="Visit page outside Confluence" rel="nofollow">Maven website<sup><img class="rendericon" src="maven-bundle-plugin-bnd_files/linkext7.gif" alt="" align="absmiddle" border="0" height="7" width="7"></sup></a></span>.</p>
233
234<h2><a name="MavenBundlePlugin(BND)-UsingthePlugin"></a>Using the Plugin</h2>
235
236<p>To use the maven-bundle-plugin, you first need to add the plugin and
237some appropriate plugin configuration to your bundle project's POM.
238Below is an example of a simple OSGi bundle POM for Maven2:</p>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000239
Karl Paulsf87ac142007-07-06 22:36:17 +0000240<div class="preformatted"><div class="preformattedContent">
241<pre>&lt;project&gt;
242 &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
243 &lt;groupId&gt;my-osgi-bundles&lt;/groupId&gt;
244 &lt;artifactId&gt;examplebundle&lt;/artifactId&gt;
245 &lt;packaging&gt;bundle&lt;/packaging&gt; &lt;!-- (1) --&gt;
246 &lt;version&gt;1.0&lt;/version&gt;
247 &lt;name&gt;Example Bundle&lt;/name&gt;
248 &lt;dependencies&gt;
249 &lt;dependency&gt;
250 &lt;groupId&gt;org.apache.felix&lt;/groupId&gt;
251 &lt;artifactId&gt;org.osgi.core&lt;/artifactId&gt;
Stuart McCulloch7c961f52008-01-02 08:56:07 +0000252 &lt;version&gt;1.0.0&lt;/version&gt;
Karl Paulsf87ac142007-07-06 22:36:17 +0000253 &lt;/dependency&gt;
254 &lt;/dependencies&gt;
255 &lt;build&gt;
256 &lt;plugins&gt;
257 &lt;plugin&gt; &lt;!-- (2) START --&gt;
258 &lt;groupId&gt;org.apache.felix&lt;/groupId&gt;
259 &lt;artifactId&gt;maven-bundle-plugin&lt;/artifactId&gt;
260 &lt;extensions&gt;true&lt;/extensions&gt;
261 &lt;configuration&gt;
262 &lt;instructions&gt;
263 &lt;Export-Package&gt;com.my.company.api&lt;/Export-Package&gt;
264 &lt;Private-Package&gt;com.my.company.*&lt;/Private-Package&gt;
265 &lt;Bundle-Activator&gt;com.my.company.Activator&lt;/Bundle-Activator&gt;
266 &lt;/instructions&gt;
267 &lt;/configuration&gt;
268 &lt;/plugin&gt; &lt;!-- (2) END --&gt;
269 &lt;/plugins&gt;
270 &lt;/build&gt;
Karl Paulsf87ac142007-07-06 22:36:17 +0000271&lt;/project&gt;
272</pre>
273</div></div>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000274
275<p>There are two main things to note: (1) the <tt>&lt;packaging&gt;</tt>
276specifier must be "bundle" and (2) the plugin and configuration must be
Karl Paulsf87ac142007-07-06 22:36:17 +0000277specified (the configuration section is where you will issue
Stuart McCulloch93de6492007-12-16 15:59:05 +0000278instructions to the plugin).</p>
Karl Paulsf87ac142007-07-06 22:36:17 +0000279
280<h2><a name="MavenBundlePlugin(BND)-RealWorldExample"></a>Real-World Example</h2>
281
282<p>Consider this more real-world example using Felix' Log Service
283implementation. The Log Service project is comprised of a single
284package: <tt>org.apache.felix.log.impl</tt>. It has a dependency on
285the core OSGi interfaces as well as a dependency on the compendium OSGi
286interfaces for the specific log service interfaces. The following is
287its POM file:</p>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000288
Karl Paulsf87ac142007-07-06 22:36:17 +0000289<div class="preformatted"><div class="preformattedContent">
290<pre>&lt;project&gt;
291 &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
292 &lt;groupId&gt;org.apache.felix&lt;/groupId&gt;
293 &lt;artifactId&gt;org.apache.felix.log&lt;/artifactId&gt;
294 &lt;packaging&gt;bundle&lt;/packaging&gt;
295 &lt;name&gt;Apache Felix Log Service&lt;/name&gt;
296 &lt;version&gt;0.8.0-SNAPSHOT&lt;/version&gt;
297 &lt;description&gt;
298 This bundle provides an implementation of the OSGi R4 Log service.
299 &lt;/description&gt;
300 &lt;dependencies&gt;
301 &lt;dependency&gt;
302 &lt;groupId&gt;${pom.groupId}&lt;/groupId&gt;
303 &lt;artifactId&gt;org.osgi.core&lt;/artifactId&gt;
304 &lt;version&gt;0.8.0-incubator&lt;/version&gt;
305 &lt;/dependency&gt;
306 &lt;dependency&gt;
307 &lt;groupId&gt;${pom.groupId}&lt;/groupId&gt;
308 &lt;artifactId&gt;org.osgi.compendium&lt;/artifactId&gt;
309 &lt;version&gt;0.9.0-incubator-SNAPSHOT&lt;/version&gt;
310 &lt;/dependency&gt;
311 &lt;/dependencies&gt;
312 &lt;build&gt;
313 &lt;plugins&gt;
314 &lt;plugin&gt;
315 &lt;groupId&gt;org.apache.felix&lt;/groupId&gt;
316 &lt;artifactId&gt;maven-bundle-plugin&lt;/artifactId&gt;
317 &lt;extensions&gt;true&lt;/extensions&gt;
318 &lt;configuration&gt;
319 &lt;instructions&gt;
320 &lt;Export-Package&gt;org.osgi.service.log&lt;/Export-Package&gt;
321 &lt;Private-Package&gt;org.apache.felix.log.impl&lt;/Private-Package&gt;
322 &lt;Bundle-SymbolicName&gt;${pom.artifactId}&lt;/Bundle-SymbolicName&gt;
323 &lt;Bundle-Activator&gt;${pom.artifactId}.impl.Activator&lt;/Bundle-Activator&gt;
324 &lt;Export-Service&gt;org.osgi.service.log.LogService,org.osgi.service.log.LogReaderService&lt;/Export-Service&gt;
325 &lt;/instructions&gt;
326 &lt;/configuration&gt;
327 &lt;/plugin&gt;
328 &lt;/plugins&gt;
329 &lt;/build&gt;
Karl Paulsf87ac142007-07-06 22:36:17 +0000330&lt;/project&gt;
331</pre>
332</div></div>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000333
Karl Paulsf87ac142007-07-06 22:36:17 +0000334<p>Notice that the <tt>&lt;Export-Package&gt;</tt> instruction
335specifies that the bundle exports the Log Service package, even though
336this package is not contained in the bundle project. By declaring this,
337the plugin will copy the Log Service package into the resulting bundle
338JAR file. This is useful in this case because now the bundle can
339resolve without having to download the entire compendium bundle. The
340resulting manifest for the Log Service bundle looks like this (notice
341how the imports/exports automatically have version information
342associated with them, which was obtained from packageinfo files in the
343source packages):</p>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000344
Karl Paulsf87ac142007-07-06 22:36:17 +0000345<div class="preformatted"><div class="preformattedContent">
346<pre>Manifest-Version: 1
347Bundle-License: http://www.apache.org/licenses/LICENSE-2.0.txt
348Bundle-Activator: org.apache.felix.log.impl.Activator
349Import-Package: org.osgi.framework;version=1.3, org.osgi.service.log;v
350 ersion=1.3
351Include-Resource: src/main/resources
352Export-Package: org.osgi.service.log;uses:=org.osgi.framework;version=
353 1.3
354Bundle-Version: 0.8.0.SNAPSHOT
355Bundle-Name: Apache Felix Log Service
356Bundle-Description: This bundle provides an implementation of the OSGi
357 R4 Log service.
358Private-Package: org.apache.felix.log.impl
359Bundle-ManifestVersion: 2
360Export-Service: org.osgi.service.log.LogService,org.osgi.service.log.L
361 ogReaderService
362Bundle-SymbolicName: org.apache.felix.log
363</pre>
364</div></div>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000365
Karl Paulsf87ac142007-07-06 22:36:17 +0000366<p>The resulting bundle JAR file has the following content (notice how
367the LICENSE and NOTICE files were automatically copied from the <tt>src/main/resources/</tt> directory of the project):</p>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000368
Karl Paulsf87ac142007-07-06 22:36:17 +0000369<div class="preformatted"><div class="preformattedContent">
370<pre>META-INF/MANIFEST.MF
371LICENSE
372META-INF/
373META-INF/maven/
374META-INF/maven/org.apache.felix/
375META-INF/maven/org.apache.felix/org.apache.felix.log/
376META-INF/maven/org.apache.felix/org.apache.felix.log/pom.properties
377META-INF/maven/org.apache.felix/org.apache.felix.log/pom.xml
378NOTICE
379org/
380org/apache/
381org/apache/felix/
382org/apache/felix/log/
383org/apache/felix/log/impl/
384org/apache/felix/log/impl/Activator.class
385org/apache/felix/log/impl/Log.class
386org/apache/felix/log/impl/LogEntryImpl.class
387org/apache/felix/log/impl/LogException.class
388org/apache/felix/log/impl/LogListenerThread.class
389org/apache/felix/log/impl/LogNode.class
390org/apache/felix/log/impl/LogNodeEnumeration.class
391org/apache/felix/log/impl/LogReaderServiceFactory.class
392org/apache/felix/log/impl/LogReaderServiceImpl.class
393org/apache/felix/log/impl/LogServiceFactory.class
394org/apache/felix/log/impl/LogServiceImpl.class
395org/osgi/
396org/osgi/service/
397org/osgi/service/log/
398org/osgi/service/log/LogEntry.class
399org/osgi/service/log/LogListener.class
400org/osgi/service/log/LogReaderService.class
401org/osgi/service/log/LogService.class
402org/osgi/service/log/package.html
403org/osgi/service/log/packageinfo
404</pre>
405</div></div>
406
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000407<h2><a name="MavenBundlePlugin(BND)-AddingOSGimetadatatoexistingprojectswithoutchangingthepackagingtype"></a>Adding OSGi metadata to existing projects without changing the packaging type</h2>
408
409<p>If you want to keep your project packaging type (for example "jar") but would like to add OSGi metadata<br>
410you can use the manifest goal to generate a bundle manifest. The maven-jar-plugin can then be used to<br>
411add this manifest to the final artifact. For example:</p>
412
413<div class="code"><div class="codeContent">
414<pre class="code-xml"><span class="code-tag">&lt;plugin&gt;</span>
415 <span class="code-tag">&lt;artifactId&gt;</span>maven-jar-plugin<span class="code-tag">&lt;/artifactId&gt;</span>
416 <span class="code-tag">&lt;configuration&gt;</span>
417 <span class="code-tag">&lt;archive&gt;</span>
418 <span class="code-tag">&lt;manifestFile&gt;</span>${project.build.outputDirectory}/META-INF/MANIFEST.MF<span class="code-tag">&lt;/manifestFile&gt;</span>
419 <span class="code-tag">&lt;/archive&gt;</span>
420 <span class="code-tag">&lt;/configuration&gt;</span>
421<span class="code-tag">&lt;/plugin&gt;</span>
422<span class="code-tag">&lt;plugin&gt;</span>
423 <span class="code-tag">&lt;groupId&gt;</span>org.apache.felix<span class="code-tag">&lt;/groupId&gt;</span>
424 <span class="code-tag">&lt;artifactId&gt;</span>maven-bundle-plugin<span class="code-tag">&lt;/artifactId&gt;</span>
425 <span class="code-tag">&lt;executions&gt;</span>
426 <span class="code-tag">&lt;execution&gt;</span>
427 <span class="code-tag">&lt;id&gt;</span>bundle-manifest<span class="code-tag">&lt;/id&gt;</span>
428 <span class="code-tag">&lt;phase&gt;</span>process-classes<span class="code-tag">&lt;/phase&gt;</span>
429 <span class="code-tag">&lt;goals&gt;</span>
430 <span class="code-tag">&lt;goal&gt;</span>manifest<span class="code-tag">&lt;/goal&gt;</span>
431 <span class="code-tag">&lt;/goals&gt;</span>
432 <span class="code-tag">&lt;/execution&gt;</span>
433 <span class="code-tag">&lt;/executions&gt;</span>
434<span class="code-tag">&lt;/plugin&gt;</span></pre>
435</div></div>
436
Karl Paulsf87ac142007-07-06 22:36:17 +0000437<h2><a name="MavenBundlePlugin(BND)-BuildingthePlugin"></a>Building the Plugin</h2>
438
Stuart McCulloch93de6492007-12-16 15:59:05 +0000439<p>The plugin is hosted at the Apache Felix project. The following
440steps describe how to build and install the plugin into your local
441Maven2 repository.</p>
Karl Paulsf87ac142007-07-06 22:36:17 +0000442
443<p>Using the SVN client of your choice, checkout the maven-bundle-plugin project.</p>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000444
Karl Paulsf87ac142007-07-06 22:36:17 +0000445<div class="preformatted"><div class="preformattedContent">
Stuart McCulloch93de6492007-12-16 15:59:05 +0000446<pre>$ svn co http://svn.apache.org/repos/asf/felix/trunk/bundleplugin
Karl Paulsf87ac142007-07-06 22:36:17 +0000447</pre>
448</div></div>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000449
Karl Paulsf87ac142007-07-06 22:36:17 +0000450<p>Using Maven2, build and install the maven-bundle-plugin by issuing
451the following Maven2 command in the project directory that was created
452as a result of the previous step.</p>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000453
Karl Paulsf87ac142007-07-06 22:36:17 +0000454<div class="preformatted"><div class="preformattedContent">
455<pre>$ mvn install
456</pre>
457</div></div>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000458
459<h1><a name="MavenBundlePlugin(BND)-Goals"></a>Goals</h1>
460
461<p>The maven-bundle-plugin also provides additional functionality via
462some Maven goals. Command-line execution of a goal is performed as
463follows:</p>
464
465<div class="preformatted"><div class="preformattedContent">
466<pre>mvn org.apache.felix:maven-bundle-plugin:GOAL
467</pre>
468</div></div>
469
470<p>Where GOAL is one of the following:</p>
471
472<ul>
Stuart McCulloch0340ae42008-02-22 11:27:18 +0000473 <li><b><tt>bundle</tt></b> - build an OSGi bundle jar for the current project<br>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000474configuration options:
475 <ul>
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000476 <li><em><tt>manifestLocation</tt></em> defaults to ${project.build.outputDirectory}/META-INF</li>
477 <li><em><tt>unpackBundle</tt></em> unpack bundle contents to output directory, defaults to false</li>
Stuart McCulloch0340ae42008-02-22 11:27:18 +0000478 <li><em><tt>excludeDependencies</tt></em> comma-separated list of dependency artifactIds to exclude from the classpath passed to Bnd (use "true" to exclude everything)</li>
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000479 <li><em><tt>supportedProjectTypes</tt></em> defaults to "jar","bundle"</li>
Stuart McCulloch0340ae42008-02-22 11:27:18 +0000480 <li><em><tt>classifier</tt></em> attach bundle to the project using the given classifier</li>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000481 </ul>
482 </li>
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000483</ul>
484
485
486<ul>
Stuart McCulloch0340ae42008-02-22 11:27:18 +0000487 <li><b><tt>bundleall</tt></b> - build OSGi bundle jars for all transitive dependencies<br>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000488configuration options:
489 <ul>
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000490 <li><em><tt>supportedProjectTypes</tt></em> defaults to "jar","bundle"</li>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000491 </ul>
492 </li>
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000493</ul>
494
495
496<ul>
497 <li><b><tt>wrap</tt></b> - as above, but limited to the first level of dependencies<br>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000498configuration options:
499 <ul>
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000500 <li><em><tt>supportedProjectTypes</tt></em> defaults to "jar","bundle"</li>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000501 </ul>
502 </li>
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000503</ul>
504
505
506<ul>
507 <li><b><tt>manifest</tt></b> - create an OSGi manifest for the current project<br>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000508configuration options:
509 <ul>
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000510 <li><em><tt>manifestLocation</tt></em> defaults to ${project.build.outputDirectory}/META-INF</li>
511 <li><em><tt>supportedProjectTypes</tt></em> defaults to "jar","bundle"</li>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000512 </ul>
513 </li>
514</ul>
515
516
Stuart McCulloch0340ae42008-02-22 11:27:18 +0000517<ul>
518 <li><b><tt>install</tt></b> - adds the current bundle project to the local OBR<br>
519configuration options:
520 <ul>
521 <li><em><tt>obrRepository</tt></em> path to local OBR, defaults to <em>&lt;local-maven-repository&gt;</em><tt>/repository.xml</tt></li>
522 </ul>
523 </li>
524</ul>
525
526
527<p>More GOALs are available in the <b>1.4.0</b> release:</p>
528
529<ul>
530 <li><b><tt>ant</tt></b> - create an Ant build script to rebuild the bundle</li>
531</ul>
532
533
534<ul>
535 <li><b><tt>install-file</tt></b> - adds a local bundle file to the local OBR<br>
536configuration options:
537 <ul>
538 <li><em><tt>obrRepository</tt></em> path to local OBR, defaults to <em>&lt;local-maven-repository&gt;</em><tt>/repository.xml</tt></li>
539 <li><em><tt>groupId</tt></em> Maven groupId for the bundle, taken from <em>pomFile</em> if given</li>
540 <li><em><tt>artifactId</tt></em> Maven artifactId for the bundle, taken from <em>pomFile</em> if given</li>
541 <li><em><tt>version</tt></em> Maven version for the bundle, taken from <em>pomFile</em> if given</li>
542 <li><em><tt>packaging</tt></em> Maven packaging type for the bundle, taken from <em>pomFile</em> if given</li>
543 <li><em><tt>classifier</tt></em> Maven classifier type, defaults to none</li>
544 <li><em><tt>pomFile</tt></em> optional Pom file describing the bundle</li>
545 <li><em><tt>file</tt></em> bundle file, defaults to the bundle from the local Maven repository</li>
546 <li><em><tt>obrXml</tt></em> optional additional properties for the bundle</li>
547 </ul>
548 </li>
549</ul>
550
551
552<ul>
553 <li><b><tt>deploy</tt></b> - adds the current bundle project to a remote OBR<br>
554configuration options:
555 <ul>
556 <li><em><tt>remoteOBR</tt></em> name of remote OBR, defaults to NONE (which means no remote OBR deployment)</li>
557 <li><em><tt>obrRepository</tt></em> used when the remoteOBR name is blank, defaults to <tt>repository.xml</tt></li>
558 <li><em><tt>altDeploymentRepository</tt></em> alternative remote repository, <em>id::layout::url</em></li>
559 <li><em><tt>ignoreLock</tt></em> ignore remote locking when updating the OBR</li>
560 </ul>
561 </li>
562</ul>
563
564
565<ul>
566 <li><b><tt>deploy-file</tt></b> - adds a local bundle file to a remote OBR<br>
567configuration options:
568 <ul>
569 <li><em><tt>remoteOBR</tt></em> name of remote OBR, defaults to an empty string</li>
570 <li><em><tt>obrRepository</tt></em> used when the remoteOBR name is blank, defaults to <tt>repository.xml</tt></li>
571 <li><em><tt>repositoryId</tt></em> optional repository id, used to lookup authentication settings</li>
572 <li><em><tt>url</tt></em> remote repository transport URL, like
573<div class="preformatted"><div class="preformattedContent">
574<pre>scpexe://host/path/to/obr
575</pre>
576</div></div></li>
577 <li><em><tt>bundleUrl</tt></em> public URL of deployed bundle, like
578<div class="preformatted"><div class="preformattedContent">
579<pre>http://www.foo.org/bundles/foo.jar
580</pre>
581</div></div></li>
582 <li><em><tt>groupId</tt></em> Maven groupId for the bundle, taken from <em>pomFile</em> if given</li>
583 <li><em><tt>artifactId</tt></em> Maven artifactId for the bundle, taken from <em>pomFile</em> if given</li>
584 <li><em><tt>version</tt></em> Maven version for the bundle, taken from <em>pomFile</em> if given</li>
585 <li><em><tt>packaging</tt></em> Maven packaging type for the bundle, taken from <em>pomFile</em> if given</li>
586 <li><em><tt>classifier</tt></em> Maven classifier type, defaults to none</li>
587 <li><em><tt>pomFile</tt></em> optional Pom file describing the bundle</li>
588 <li><em><tt>file</tt></em> bundle file, defaults to the bundle from the local Maven repository</li>
589 <li><em><tt>obrXml</tt></em> optional additional properties for the bundle</li>
590 <li><em><tt>ignoreLock</tt></em> ignore remote locking when updating the OBR</li>
591 </ul>
592 </li>
593</ul>
594
595
596<ul>
597 <li><b><tt>clean</tt></b> - cleans the local OBR, removing missing bundles<br>
598configuration options:
599 <ul>
600 <li><em><tt>obrRepository</tt></em> path to local OBR, defaults to <em>&lt;local-maven-repository&gt;</em><tt>/repository.xml</tt></li>
601 </ul>
602 </li>
603</ul>
604
605
Stuart McCulloch93de6492007-12-16 15:59:05 +0000606<p>There are also new instructions available from the underlying BND
607tool, which continues to be improved independently; for the latest see <span class="nobr"><a href="http://aqute.biz/Code/Bnd" title="Visit page outside Confluence" rel="nofollow">BND documentation<sup><img class="rendericon" src="maven-bundle-plugin-bnd_files/linkext7.gif" alt="" align="absmiddle" border="0" height="7" width="7"></sup></a></span>.</p>
608
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000609<p>The default goal <b><tt>bundle</tt></b> will be initialized by setting the &lt;packaging&gt; entry to "bundle".</p>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000610
Stuart McCulloch0340ae42008-02-22 11:27:18 +0000611<h1><a name="MavenBundlePlugin(BND)-Thefollowingfeaturesareonlyavailablefromversion1.2.0onwards"></a>The following features are only available from version 1.2.0 onwards</h1>
Stuart McCulloch7c961f52008-01-02 08:56:07 +0000612
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000613<h2><a name="MavenBundlePlugin(BND)-Embeddingdependencies"></a>Embedding dependencies</h2>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000614
Stuart McCulloch7c961f52008-01-02 08:56:07 +0000615<p>The Maven Bundle Plugin supports embedding of selected project dependencies inside the bundle by using the <tt>&lt;Embed-Dependency&gt;</tt> instruction:</p>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000616
617<div class="code"><div class="codeContent">
618<pre class="code-xml"><span class="code-tag">&lt;Embed-Dependency&gt;</span>dependencies<span class="code-tag">&lt;/Embed-Dependency&gt;</span></pre>
619</div></div>
620
621<p>where:</p>
622
623<div class="preformatted"><div class="preformattedContent">
624<pre>dependencies ::= clause ( ',' clause ) *
625clause ::= MATCH ( ';' attr '=' MATCH | ';inline=true' )
626attr ::= 'groupId' | 'artifactId' | 'version' | 'scope' | 'type' | 'classifier'
627MATCH ::= &lt;globbed regular expressions&gt;
628</pre>
629</div></div>
630
Stuart McCulloch0340ae42008-02-22 11:27:18 +0000631<p>The plugin uses the <tt>&lt;Embed-Dependency&gt;</tt> instruction to transform the project dependencies into <tt>&lt;Include-Resource&gt;</tt> and <tt>&lt;Bundle-ClassPath&gt;</tt>
632clauses, which are then appended to the current set of instructions and
633passed onto BND. If you want the embedded dependencies to be at the
634start or middle of <tt>&lt;Include-Resource&gt;</tt> or <tt>&lt;Bundle-ClassPath&gt;</tt> then you can use {<tt>maven-dependencies</tt>}, which will automatically expand to the relevant clauses.</p>
Stuart McCulloch7c961f52008-01-02 08:56:07 +0000635
Stuart McCulloch93de6492007-12-16 15:59:05 +0000636<p>some examples:</p>
637
638<div class="code"><div class="codeContent">
639<pre class="code-xml"><span class="code-tag">&lt;Embed-Dependency&gt;</span>*;scope=compile|runtime<span class="code-tag">&lt;/Embed-Dependency&gt;</span>
640
641<span class="code-tag">&lt;Embed-Dependency&gt;</span>junit;scope=test<span class="code-tag">&lt;/Embed-Dependency&gt;</span>
642
643<span class="code-tag">&lt;Embed-Dependency&gt;</span>aopalliance;scope=!test;inline=true<span class="code-tag">&lt;/Embed-Dependency&gt;</span></pre>
644</div></div>
645
Stuart McCulloch0340ae42008-02-22 11:27:18 +0000646<p>examples of using {<tt>maven-dependencies</tt>}:</p>
647
648<div class="code"><div class="codeContent">
649<pre class="code-xml"><span class="code-tag">&lt;Include-Resource&gt;</span>
650 {maven-resources}, {maven-dependencies},
651 org/foo/Example.class=target/classes/org/foo/Example.class
652<span class="code-tag">&lt;/Include-Resource&gt;</span>
653
654<span class="code-tag">&lt;Bundle-ClassPath&gt;</span>.,{maven-dependencies},some.jar<span class="code-tag">&lt;/Bundle-ClassPath&gt;</span></pre>
655</div></div>
656
Stuart McCulloch7c961f52008-01-02 08:56:07 +0000657<p>By default matched dependencies are embedded in the bundle as <tt>artifactId-version.jar</tt>. This behaviour can be modified using the following instructions:</p>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000658
659<ul>
660 <li><tt>&lt;Embed-StripVersion&gt;true&lt;/Embed-StripVersion&gt;</tt> - removes the version from the file (ie. <em>artifactId.jar</em>)</li>
661 <li><tt>&lt;Embed-StripGroup&gt;false&lt;/Embed-StripGroup&gt;</tt> - adds the groupId as a subdirectory (ie. <em>groupId/artifactId-version.jar</em>)</li>
662 <li><tt>&lt;Embed-Directory&gt;directory&lt;/Embed-Directory&gt;</tt> - adds a subdirectory (ie. <em>directory/artifactId-version.jar</em>)</li>
663</ul>
664
665
666<p>Normally the plugin only checks direct dependencies, but this can be
667changed to include the complete set of transitive dependencies with the
668following option:</p>
669
670<div class="code"><div class="codeContent">
671<pre class="code-xml"><span class="code-tag">&lt;Embed-Transitive&gt;</span>true<span class="code-tag">&lt;/Embed-Transitive&gt;</span></pre>
672</div></div>
673
674<p>If you want a dependency inlined instead of embedded add the <tt>inline=true</tt>. For example to inline all <em>compile</em> and <em>runtime</em> scoped dependencies use:</p>
675
676<div class="code"><div class="codeContent">
677<pre class="code-xml"><span class="code-tag">&lt;Embed-Dependency&gt;</span>*;scope=compile|runtime;inline=true<span class="code-tag">&lt;/Embed-Dependency&gt;</span></pre>
678</div></div>
679
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000680<h3><a name="MavenBundlePlugin(BND)-EmbedDependencyandExportPackage"></a>Embed-Dependency and Export-Package</h3>
Stuart McCulloch7c961f52008-01-02 08:56:07 +0000681
682<p>If you embed a dependency with <tt>&lt;Embed-Dependency&gt;</tt>, and your <tt>&lt;Export-Package&gt;</tt> or <tt>&lt;Private-Package&gt;</tt> instructions match packages inside the embedded jar, you will see some duplication inside the bundle. This is because the <tt>&lt;Export-Package&gt;</tt> and <tt>&lt;Private-Package&gt;</tt>
683instructions will result in classes being inlined in the bundle, even
684though they also exist inside the embedded jar. If you want to export
685packages from an embedded dependency without such duplication then you
686can either inline the dependency, or use a new BND instruction called <tt>&lt;_exportcontents&gt;</tt>.</p>
687
688<p><tt>&lt;_exportcontents&gt;</tt> behaves just like Export-Package, except it doesn't change the content of the bundle, just what content should be exported.</p>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000689
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000690<h2><a name="MavenBundlePlugin(BND)-OBRintegration"></a>OBR integration</h2>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000691
692<p>The latest Maven Bundle Plugin automatically updates the local OBR
693repository.xml file during the install phase, using a default location
694of:</p>
695
696<div class="code"><div class="codeContent">
697<pre class="code-java">&lt;LOCAL-MAVEN-REPOSITORY&gt;/repository.xml</pre>
698</div></div>
699
700<p>You can configure the location of the OBR repository by using the command line:</p>
701
702<div class="code"><div class="codeContent">
703<pre class="code-java">mvn clean install -DobrRepository=&lt;PATH_TO_OBR&gt;</pre>
704</div></div>
705
706<p>or in the configuration section for the maven-bundle-plugin in your Maven POM:</p>
707
708<div class="code"><div class="codeContent">
709<pre class="code-xml"><span class="code-tag">&lt;groupId&gt;</span>org.apache.felix<span class="code-tag">&lt;/groupId&gt;</span>
710<span class="code-tag">&lt;artifactId&gt;</span>maven-bundle-plugin<span class="code-tag">&lt;/artifactId&gt;</span>
711<span class="code-tag">&lt;extensions&gt;</span>true<span class="code-tag">&lt;/extensions&gt;</span>
712<span class="code-tag">&lt;configuration&gt;</span>
713 <span class="code-tag">&lt;obrRepository&gt;</span>PATH_TO_OBR<span class="code-tag">&lt;/obrRepository&gt;</span>
714 <span class="code-tag">&lt;instructions&gt;</span>
715 <span class="code-tag"><span class="code-comment">&lt;!-- bnd instructions --&gt;</span></span>
716 <span class="code-tag">&lt;/instructions&gt;</span>
717<span class="code-tag">&lt;/configuration&gt;</span></pre>
718</div></div>
719
720<p>to disable OBR installation set the obrRepository to NONE, for example:</p>
721
722<div class="code"><div class="codeContent">
723<pre class="code-xml"><span class="code-tag">&lt;groupId&gt;</span>org.apache.felix<span class="code-tag">&lt;/groupId&gt;</span>
724<span class="code-tag">&lt;artifactId&gt;</span>maven-bundle-plugin<span class="code-tag">&lt;/artifactId&gt;</span>
725<span class="code-tag">&lt;extensions&gt;</span>true<span class="code-tag">&lt;/extensions&gt;</span>
726<span class="code-tag">&lt;configuration&gt;</span>
727 <span class="code-tag">&lt;obrRepository&gt;</span>NONE<span class="code-tag">&lt;/obrRepository&gt;</span>
728 <span class="code-tag">&lt;instructions&gt;</span>
729 <span class="code-tag"><span class="code-comment">&lt;!-- bnd instructions --&gt;</span></span>
730 <span class="code-tag">&lt;/instructions&gt;</span>
731<span class="code-tag">&lt;/configuration&gt;</span></pre>
732</div></div>
733
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000734<h2><a name="MavenBundlePlugin(BND)-Eclipse/PDEintegration"></a>Eclipse/PDE integration</h2>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000735
736<p>It is possible to configure the Maven Bundle Plugin to put the
737bundle manifest where Eclipse/PDE expects it, and use the Maven
738Dependency Plugin to arrange for any embedded dependencies to appear in
739a local directory that matches the Bundle-ClassPath entries. Here is an
740example POM that does this:</p>
741
742<div class="preformatted"><div class="preformattedContent">
743<pre>&lt;project&gt;
744
745 &lt;properties&gt;
746 &lt;bundle.symbolicName&gt;org.example&lt;/bundle.symbolicName&gt;
747 &lt;bundle.namespace&gt;org.example&lt;/bundle.namespace&gt;
748 &lt;/properties&gt;
749
750 &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
751 &lt;groupId&gt;examples&lt;/groupId&gt;
752 &lt;artifactId&gt;org.example&lt;/artifactId&gt;
753 &lt;version&gt;1.0-SNAPSHOT&lt;/version&gt;
754
755 &lt;name&gt;${bundle.symbolicName} [${bundle.namespace}]&lt;/name&gt;
756
757 &lt;packaging&gt;bundle&lt;/packaging&gt;
758
759 &lt;build&gt;
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000760 &lt;resources&gt;
761 &lt;resource&gt;
762 &lt;directory&gt;src/main/resources&lt;/directory&gt;
763 &lt;/resource&gt;
764 &lt;resource&gt;
765 &lt;directory&gt;.&lt;/directory&gt;
766 &lt;includes&gt;
767 &lt;include&gt;plugin.xml&lt;/include&gt;
768 &lt;/includes&gt;
769 &lt;/resource&gt;
770 &lt;/resources&gt;
Stuart McCulloch93de6492007-12-16 15:59:05 +0000771 &lt;plugins&gt;
772 &lt;plugin&gt;
773 &lt;groupId&gt;org.apache.felix&lt;/groupId&gt;
774 &lt;artifactId&gt;maven-bundle-plugin&lt;/artifactId&gt;
Stuart McCulloch0340ae42008-02-22 11:27:18 +0000775 &lt;version&gt;1.2.1&lt;/version&gt;
Stuart McCulloch93de6492007-12-16 15:59:05 +0000776 &lt;extensions&gt;true&lt;/extensions&gt;
777 &lt;!--
778 the following instructions build a simple set of public/private classes into an OSGi bundle
779 --&gt;
780 &lt;configuration&gt;
781 &lt;manifestLocation&gt;META-INF&lt;/manifestLocation&gt;
782 &lt;instructions&gt;
783 &lt;Bundle-SymbolicName&gt;${bundle.symbolicName}&lt;/Bundle-SymbolicName&gt;
784 &lt;Bundle-Version&gt;${pom.version}&lt;/Bundle-Version&gt;
785 &lt;!--
786 assume public classes are in the top package, and private classes are under ".internal"
787 --&gt;
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000788 &lt;Export-Package&gt;!${bundle.namespace}.internal.*,${bundle.namespace}.*;version="${pom.version}"&lt;/Export-Package&gt;
789 &lt;Private-Package&gt;${bundle.namespace}.internal.*&lt;/Private-Package&gt;
790 &lt;Bundle-Activator&gt;${bundle.namespace}.internal.ExampleActivator&lt;/Bundle-Activator&gt;
Stuart McCulloch93de6492007-12-16 15:59:05 +0000791 &lt;!--
792 embed compile/runtime dependencies using path that matches the copied dependency folder
793 --&gt;
794 &lt;Embed-Dependency&gt;*;scope=compile|runtime;inline=false&lt;/Embed-Dependency&gt;
795 &lt;Embed-Directory&gt;target/dependency&lt;/Embed-Directory&gt;
796 &lt;Embed-StripGroup&gt;true&lt;/Embed-StripGroup&gt;
797 &lt;/instructions&gt;
798 &lt;/configuration&gt;
799 &lt;/plugin&gt;
800 &lt;plugin&gt;
801 &lt;artifactId&gt;maven-dependency-plugin&lt;/artifactId&gt;
802 &lt;executions&gt;
803 &lt;execution&gt;
804 &lt;id&gt;copy-dependencies&lt;/id&gt;
805 &lt;phase&gt;package&lt;/phase&gt;
806 &lt;goals&gt;
807 &lt;goal&gt;copy-dependencies&lt;/goal&gt;
808 &lt;/goals&gt;
809 &lt;/execution&gt;
810 &lt;/executions&gt;
811 &lt;/plugin&gt;
812 &lt;/plugins&gt;
813 &lt;/build&gt;
814
815 &lt;dependencies&gt;
816 &lt;dependency&gt;
817 &lt;groupId&gt;org.osgi&lt;/groupId&gt;
818 &lt;artifactId&gt;osgi_R4_core&lt;/artifactId&gt;
819 &lt;version&gt;1.0&lt;/version&gt;
820 &lt;scope&gt;provided&lt;/scope&gt;
821 &lt;optional&gt;true&lt;/optional&gt;
822 &lt;/dependency&gt;
823 &lt;dependency&gt;
824 &lt;groupId&gt;org.osgi&lt;/groupId&gt;
825 &lt;artifactId&gt;osgi_R4_compendium&lt;/artifactId&gt;
826 &lt;version&gt;1.0&lt;/version&gt;
827 &lt;scope&gt;provided&lt;/scope&gt;
828 &lt;optional&gt;true&lt;/optional&gt;
829 &lt;/dependency&gt;
830 &lt;dependency&gt;
831 &lt;groupId&gt;junit&lt;/groupId&gt;
832 &lt;artifactId&gt;junit&lt;/artifactId&gt;
833 &lt;version&gt;3.8.1&lt;/version&gt;
834 &lt;scope&gt;compile&lt;/scope&gt;
835 &lt;optional&gt;true&lt;/optional&gt;
836 &lt;/dependency&gt;
837 &lt;/dependencies&gt;
838
839&lt;/project&gt;
840</pre>
841</div></div>
842
843<p>To generate the Eclipse metadata use:</p>
844
845<div class="code"><div class="codeContent">
846<pre class="code-java">mvn clean <span class="code-keyword">package</span> eclipse:eclipse -Declipse.pde install</pre>
847</div></div>
848
849<p>and you should now be able to import this as an existing Eclipse project.</p>
850
851<p>FYI: the above POM was generated using the <tt>pax-create-bundle</tt> command from <span class="nobr"><a href="http://www.ops4j.org/projects/pax/construct/index.html" title="Visit page outside Confluence" rel="nofollow">Pax-Construct<sup><img class="rendericon" src="maven-bundle-plugin-bnd_files/linkext7.gif" alt="" align="absmiddle" border="0" height="7" width="7"></sup></a></span> and then tweaked to demonstrate using the Maven Dependency Plugin to handle embedded jars in Eclipse.</p>
852
853<p>With the original Pax-Construct generated POM you would simply use:</p>
854
855<div class="code"><div class="codeContent">
856<pre class="code-java">mvn clean <span class="code-keyword">package</span> pax:eclipse</pre>
857</div></div>
858
859<p>to create the appropriate Eclipse files and manifest, and also
860handle any embedded entries. The pax:eclipse goal extends
861eclipse:eclipse, and supports the same parameters.</p>
862
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000863<h2><a name="MavenBundlePlugin(BND)-Unpackingbundlecontentsto'target/classes'"></a>Unpacking bundle contents to 'target/classes'</h2>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000864
865<p>Once in a while you may create a bundle which contains additional classes to the ones compiled from <tt>src/main/java</tt>,
866for example when you embed the classes from another jar. This can
867sometimes cause unforeseen problems in Maven, as it will use the output
868directory (<tt>target/classes</tt>) rather than the final bundle, when compiling against projects in the same reactor (ie. the same build).</p>
869
870<p>The easiest way to get around this Maven 'feature' is to unpack the
871contents of the bundle to the output directory after the packaging
872step, so the additional classes will be found where Maven expects them.
873Thankfully there is now an easy option to do this in the bundle-plugin:</p>
874
875<div class="code"><div class="codeContent">
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000876<pre class="code-xml"><span class="code-tag">&lt;groupId&gt;</span>org.apache.felix<span class="code-tag">&lt;/groupId&gt;</span>
877<span class="code-tag">&lt;artifactId&gt;</span>maven-bundle-plugin<span class="code-tag">&lt;/artifactId&gt;</span>
878<span class="code-tag">&lt;extensions&gt;</span>true<span class="code-tag">&lt;/extensions&gt;</span>
879<span class="code-tag">&lt;configuration&gt;</span>
880 <span class="code-tag">&lt;unpackBundle&gt;</span>true<span class="code-tag">&lt;/unpackBundle&gt;</span>
881 <span class="code-tag">&lt;instructions&gt;</span>
882 <span class="code-tag"><span class="code-comment">&lt;!-- bnd instructions --&gt;</span></span>
883 <span class="code-tag">&lt;/instructions&gt;</span>
884<span class="code-tag">&lt;/configuration&gt;</span></pre>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000885</div></div>
886
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000887<h2><a name="MavenBundlePlugin(BND)-UsinganexistingMANIFEST.MFfile"></a>Using an existing MANIFEST.MF file</h2>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000888
889<p>If you have an existing manifest, you can add this to the Bnd instructions, like so:</p>
890
891<div class="code"><div class="codeContent">
Stuart McCullochdd4ae5f2008-02-05 12:38:46 +0000892<pre class="code-xml"><span class="code-tag">&lt;_include&gt;</span>src/main/resources/META-INF/MANIFEST.MF<span class="code-tag">&lt;/_include&gt;</span>
893<span class="code-tag">&lt;Export-Package&gt;</span>org.example.*<span class="code-tag">&lt;/Export-Package&gt;</span></pre>
Stuart McCulloch93de6492007-12-16 15:59:05 +0000894</div></div>
895
896<p>Bnd will use it when calculating the bundle contents, and will also
897copy across all manifest attributes starting with a capital letter.<br>
898As shown in the above example, you could use this to include a non-OSGi
899manifest which you then customize with extra OSGi attributes.</p>
900
Stuart McCulloch0340ae42008-02-22 11:27:18 +0000901<h1><a name="MavenBundlePlugin(BND)-Thefollowingfeaturesareonlyavailablefromversion1.4.0onwards"></a>The following features are only available from version 1.4.0 onwards</h1>
902
903<h2><a name="MavenBundlePlugin(BND)-bundle:ant"></a>bundle:ant</h2>
904
905<p>The <b>ant</b> goal creates a customized <tt>build.xml</tt> Ant script along with a collection of BND instructions and properties, taken from the current project and stored in <tt>maven-build.bnd</tt>. You also need to run <b><tt>ant:ant</tt></b> to create the standard Ant support tasks to download Maven dependencies and perform compilation, etc.</p>
906
907<p>The customized Ant script uses the BND tool to rebuild the bundle,
908so any source changes should be reflected in the (re)generated manifest.</p>
909
910<p>Example:</p>
911<div class="preformatted"><div class="preformattedContent">
912<pre>mvn ant:ant bundle:ant
913
914ant clean package
915</pre>
916</div></div>
917
918<h2><a name="MavenBundlePlugin(BND)-bundle:installfile"></a>bundle:install-file</h2>
919
920<p>The <b>install-file</b> goal updates the local OBR with the details of a bundle from the local filesystem.</p>
921
922<p>configuration:</p>
923<ul>
924 <li><em>obrRepository</em> path to local OBR, defaults to <em>&lt;local-maven-repository&gt;</em><tt>/repository.xml</tt></li>
925 <li><em>groupId</em> Maven groupId for the bundle, taken from <em>pomFile</em> if given</li>
926 <li><em>artifactId</em> Maven artifactId for the bundle, taken from <em>pomFile</em> if given</li>
927 <li><em>version</em> Maven version for the bundle, taken from <em>pomFile</em> if given</li>
928 <li><em>packaging</em> Maven packaging type for the bundle, taken from <em>pomFile</em> if given</li>
929 <li><em>classifier</em> Maven classifier type, defaults to none</li>
930 <li><em>pomFile</em> optional Pom file describing the bundle</li>
931 <li><em>file</em> bundle file, defaults to the bundle from the local Maven repository</li>
932 <li><em>obrXml</em> optional additional properties for the bundle</li>
933</ul>
934
935
936<p>Example:</p>
937<div class="preformatted"><div class="preformattedContent">
938<pre>mvn org.apache.felix:maven-bundle-plugin:1.4.0:install-file \
939 -DpomFile=myPom.xml -Dfile=foo-1.0.jar
940</pre>
941</div></div>
942
943<h2><a name="MavenBundlePlugin(BND)-bundle:deploy"></a>bundle:deploy</h2>
944
945<p>The <b>deploy goal</b> updates the remote OBR with the details of
946the deployed bundle from the local Maven repository. The remote OBR is
947found by querying the <tt>&lt;distributionManagement&gt;</tt> section of the project, unless <tt>-DaltDeploymentRepository</tt> is set. See <span class="nobr"><a href="http://maven.apache.org/plugins/maven-deploy-plugin/deploy-mojo.html" title="Visit page outside Confluence" rel="nofollow">http://maven.apache.org/plugins/maven-deploy-plugin/deploy-mojo.html<sup><img class="rendericon" src="maven-bundle-plugin-bnd_files/linkext7.gif" alt="" align="absmiddle" border="0" height="7" width="7"></sup></a></span> for more details about these particular settings.</p>
948
949<p>(If the project has an <tt>obr.xml</tt> file somewhere in its resources, then it will be automatically detected and applied.)</p>
950
951<p>configuration:</p>
952<ul>
953 <li><em>remoteOBR</em> name of remote OBR, defaults to NONE (which means no remote OBR deployment)</li>
954 <li><em>obrRepository</em> used when the remoteOBR name is blank, defaults to <tt>repository.xml</tt></li>
955 <li><em>altDeploymentRepository</em> alternative remote repository, <em>id::layout::url</em></li>
956 <li><em>ignoreLock</em> ignore remote locking when updating the OBR</li>
957</ul>
958
959
960<p>This goal is part of the "bundle" packaging lifecycle, but is disabled by default - to enable just set the <tt>remoteOBR</tt> parameter.</p>
961
962<h2><a name="MavenBundlePlugin(BND)-bundle:deployfile"></a>bundle:deploy-file</h2>
963
964<p>The <b>deploy-file</b> goal updates the remote OBR with the details of a deployed bundle from the local filesystem. The remote OBR is found using the <tt>-DrepositoryId</tt> and <tt>-Durl</tt> parameters. See <span class="nobr"><a href="http://maven.apache.org/plugins/maven-deploy-plugin/deploy-file-mojo.html" title="Visit page outside Confluence" rel="nofollow">http://maven.apache.org/plugins/maven-deploy-plugin/deploy-file-mojo.html<sup><img class="rendericon" src="maven-bundle-plugin-bnd_files/linkext7.gif" alt="" align="absmiddle" border="0" height="7" width="7"></sup></a></span> for more details about these particular settings.</p>
965
966<p>You can use the <tt>-DbundleUrl</tt> parameter to give the public location of the deployed bundle, which may differ from the remote OBR location.</p>
967
968<p>configuration:</p>
969<ul>
970 <li><em>remoteOBR</em> name of remote OBR, defaults to an empty string</li>
971 <li><em>obrRepository</em> used when the remoteOBR name is blank, defaults to <tt>repository.xml</tt></li>
972 <li><em>repositoryId</em> optional repository id, used to lookup authentication settings</li>
973 <li><em>url</em> remote repository transport URL, like
974<div class="preformatted"><div class="preformattedContent">
975<pre>scpexe://host/path/to/obr
976</pre>
977</div></div></li>
978 <li><em>bundleUrl</em> public URL of deployed bundle, like
979<div class="preformatted"><div class="preformattedContent">
980<pre>http://www.foo.org/bundles/foo.jar
981</pre>
982</div></div></li>
983 <li><em>groupId</em> Maven groupId for the bundle, taken from <em>pomFile</em> if given</li>
984 <li><em>artifactId</em> Maven artifactId for the bundle, taken from <em>pomFile</em> if given</li>
985 <li><em>version</em> Maven version for the bundle, taken from <em>pomFile</em> if given</li>
986 <li><em>packaging</em> Maven packaging type for the bundle, taken from <em>pomFile</em> if given</li>
987 <li><em>classifier</em> Maven classifier type, defaults to none</li>
988 <li><em>pomFile</em> optional Pom file describing the bundle</li>
989 <li><em>file</em> bundle file, defaults to the bundle from the local Maven repository</li>
990 <li><em>obrXml</em> optional additional properties for the bundle</li>
991 <li><em>ignoreLock</em> ignore remote locking when updating the OBR</li>
992</ul>
993
994
995<p>Example:</p>
996<div class="preformatted"><div class="preformattedContent">
997<pre>mvn org.apache.felix:maven-bundle-plugin:1.4.0:deploy-file \
998 -DpomFile=myPom.xml -Dfile=foo-1.0.jar -Durl=file:/tmp/example/OBR \
999 -DbundleUrl=http://www.foo.org/bundles/foo.jar
1000</pre>
1001</div></div>
1002
1003<h2><a name="MavenBundlePlugin(BND)-bundle:clean"></a>bundle:clean</h2>
1004
1005<p>Sometimes you would like to clean your local OBR because it contains
1006bundles that are no longer in your local Maven repository. This case
1007often occurs when artifacts were deleted manually. The
1008maven-bundle-plugin provides a simple goal to check for missing
1009bundles, and remove them from the local OBR.</p>
1010
1011<p>configuration:</p>
1012<ul>
1013 <li><em>obrRepository</em> path to local OBR, defaults to <em>&lt;local-maven-repository&gt;</em><tt>/repository.xml</tt></li>
1014</ul>
1015
1016
1017<p>Example:</p>
1018<div class="preformatted"><div class="preformattedContent">
1019<pre>mvn bundle:clean
1020</pre>
1021</div></div>
1022
1023<h2><a name="MavenBundlePlugin(BND)-Concurrentupdates"></a>Concurrent updates</h2>
1024
1025<p>With a remote OBR, several uploads may occur at the same time.
1026However, the remote OBR is centralized in one file, so concurrent
1027modification must be avoided. To achieve this, the plug-in implements a
1028locking system. Each time the plug-in tries to modify the file it sets
1029a file based lock. If it can't take the lock, it will wait and retry.
1030After 3 attempts the upload process fails. To bypass this lock add <tt>-DignoreLock</tt> to the command-line (or add <tt>&lt;ignoreLock&gt;true&lt;ignoreLock&gt;</tt> to the configuration section of your Pom).</p>
1031
1032<h2><a name="MavenBundlePlugin(BND)-FTPprotocol"></a>FTP protocol</h2>
1033
1034<p>Not all protocols are supported by Maven out of the box. For example the ftp protocol requires the <b>wagon-ftp</b> component. To enable the ftp protocol add this to your Pom:</p>
1035<div class="code"><div class="codeContent">
1036<pre class="code-xml"><span class="code-tag">&lt;build&gt;</span>
1037 <span class="code-tag">&lt;extensions&gt;</span>
1038 <span class="code-tag">&lt;extension&gt;</span>
1039 <span class="code-tag">&lt;groupId&gt;</span>org.apache.maven.wagon<span class="code-tag">&lt;/groupId&gt;</span>
1040 <span class="code-tag">&lt;artifactId&gt;</span>wagon-ftp<span class="code-tag">&lt;/artifactId&gt;</span>
1041 <span class="code-tag">&lt;version&gt;</span>1.0-alpha-6<span class="code-tag">&lt;/version&gt;</span>
1042 <span class="code-tag">&lt;/extension&gt;</span>
1043 <span class="code-tag">&lt;/extensions&gt;</span>
1044<span class="code-tag">&lt;/build&gt;</span></pre>
1045</div></div>
1046
1047<h2><a name="MavenBundlePlugin(BND)-Howtheplugincomputesthedescriptionofthebundle"></a>How the plug-in computes the description of the bundle</h2>
1048
1049<p>The description of the bundle comes from three different sources:</p>
1050<ul>
1051 <li>Bindex : Bindex is a tool that analyzes a bundle manifest to generate OBR description</li>
1052 <li>pom.xml : by analyzing the pom file, various information is collected (symbolic name ...)</li>
1053 <li>obr.xml : this file contains customized description and capabilities for the bundle</li>
1054</ul>
1055
1056
1057<p>These sources are merged together using the following precedence:</p>
1058<div class="preformatted"><div class="preformattedContent">
1059<pre>Bindex
1060| (overrides)
1061pom.xml
1062| (overrides)
1063obr.xml
1064</pre>
1065</div></div>
1066<p>A warning message is displayed when existing information is overridden.</p>
1067
1068<h2><a name="MavenBundlePlugin(BND)-Knownissues&amp;limitations"></a>Known issues &amp; limitations</h2>
1069
1070<ol>
1071 <li>obr.xml (file given by the user to add properties not found
1072by Bindex) must be correct, because the plug-in does not check its
1073syntax.</li>
1074</ol>
1075
1076
Stuart McCulloch93de6492007-12-16 15:59:05 +00001077<h1><a name="MavenBundlePlugin(BND)-Feedback"></a>Feedback</h1>
1078
1079<p>Subscribe to the Felix users mailing list by sending a message to <span class="nobr"><a href="mailto:users-subscribe@felix.apache.org" title="Send mail to users-subscribe@felix.apache.org" rel="nofollow">users-subscribe@felix.apache.org<sup><img class="rendericon" src="maven-bundle-plugin-bnd_files/mail_small.gif" alt="" align="absmiddle" border="0" height="12" width="13"></sup></a></span>; after subscribing, email questions or feedback to <span class="nobr"><a href="mailto:users@felix.apache.org" title="Send mail to users@felix.apache.org" rel="nofollow">users@felix.apache.org<sup><img class="rendericon" src="maven-bundle-plugin-bnd_files/mail_small.gif" alt="" align="absmiddle" border="0" height="12" width="13"></sup></a></span>.</p>
Karl Paulsf87ac142007-07-06 22:36:17 +00001080 </div>
Stuart McCulloch0340ae42008-02-22 11:27:18 +00001081 </body></html>