Export impl package from mdsal-singleton-dom-impl 01/42001/1
authorTom Pantelis <tpanteli@brocade.com>
Mon, 18 Jul 2016 20:00:03 +0000 (16:00 -0400)
committerTom Pantelis <tpanteli@brocade.com>
Mon, 18 Jul 2016 20:00:03 +0000 (16:00 -0400)
We need to explictly export the org.opendaylight.mdsal.singleton.dom.impl
package via maven-bundle-plugin as packages with 'impl' are
automatically excluded.

Change-Id: I6cb644eee7dc68725adc97a3ea1665c7ef5d486c
Signed-off-by: Tom Pantelis <tpanteli@brocade.com>
singleton-service/mdsal-singleton-dom-impl/pom.xml

index 8185a918633c7db296bcd17ac584c6406c65dd46..97c7cb8cc1a0bfa49cdb8fd8b94ea5bacf531629 100644 (file)
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
         <extensions>true</extensions>
+          <configuration>
+            <instructions>
+              <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
+              <Export-Package>
+                org.opendaylight.mdsal.singleton.dom.impl
+              </Export-Package>
+          </instructions>
+        </configuration>
       </plugin>
     </plugins>
   </build>