diff --git a/spi-fly/pom.xml b/spi-fly/pom.xml
index 293761d492..ce1bd040bd 100644
--- a/spi-fly/pom.xml
+++ b/spi-fly/pom.xml
@@ -65,6 +65,7 @@
1.14.44.13.23.15.0
+ 3.11.03.6.33.5.6
@@ -189,6 +190,23 @@
+
+ org.apache.maven.plugins
+ maven-javadoc-plugin
+
+ ${java.source.version}
+ true
+ ${aries.javadoc.exclude.packages}
+
+
+
+ attach-javadocs
+
+ jar
+
+
+
+
diff --git a/spi-fly/spi-fly-core/src/main/java/org/apache/aries/spifly/ConsumerHeaderProcessor.java b/spi-fly/spi-fly-core/src/main/java/org/apache/aries/spifly/ConsumerHeaderProcessor.java
index 71408ee127..b3cb8a96b4 100644
--- a/spi-fly/spi-fly-core/src/main/java/org/apache/aries/spifly/ConsumerHeaderProcessor.java
+++ b/spi-fly/spi-fly-core/src/main/java/org/apache/aries/spifly/ConsumerHeaderProcessor.java
@@ -49,29 +49,29 @@ public class ConsumerHeaderProcessor {
/**
* Parses headers of the following syntax:
*
- *
org.acme.MyClass#myMethod - apply the weaving to all overloads of myMethod()
- * in MyClass
- *
org.acme.MyClass#myMethod(java.lang.String, java.util.List) - apply the weaving only
- * to the myMethod(String, List) overload in MyClass
- *
org.acme.MyClass#myMethod() - apply the weaving only to the noarg overload of
- * myMethod()
- *
true - equivalent to java.util.ServiceLoader#load(java.lang.Class)
+ *
org.acme.MyClass#myMethod - apply the weaving to all overloads of myMethod()
+ * in MyClass
+ *
org.acme.MyClass#myMethod(java.lang.String, java.util.List) - apply the weaving only
+ * to the myMethod(String, List) overload in MyClass
+ *
org.acme.MyClass#myMethod() - apply the weaving only to the noarg overload of
+ * myMethod()
+ *
true - equivalent to java.util.ServiceLoader#load(java.lang.Class)
*
* Additionally, it registers the consumer's constraints with the consumer registry in the activator, if the
* consumer is only constrained to a certain set of bundles.
*
* The following attributes are supported:
*
- *
bundle - restrict wiring to the bundle with the specifies Symbolic Name. The attribute value
+ *
bundle - restrict wiring to the bundle with the specifies Symbolic Name. The attribute value
* is a list of bundle identifiers separated by a '|' sign. The bundle identifier starts with the Symbolic name
* and can optionally contain a version suffix. E.g. bundle=impl2:version=1.2.3 or bundle=impl2|impl4.
- *
bundleId - restrict wiring to the bundle with the specified bundle ID. Typically used when
- * the service should be forcibly picked up from the system bundle (bundleId=0). Multiple bundle IDs
+ *
bundleId - restrict wiring to the bundle with the specified bundle ID. Typically used when
+ * the service should be forcibly picked up from the system bundle (bundleId=0). Multiple bundle IDs
* can be specified separated by a '|' sign.
*
*
* @param consumerHeaderName the name of the header (either Require-Capability or SPI-Consumer)
- * @param consumerHeader the SPI-Consumer header.
+ * @param consumerHeader the SPI-Consumer header.
* @return an instance of the {@link WeavingData} class.
* @throws Exception when a header cannot be parsed.
*/