Fix utils exports
authorSam Hague <shague@redhat.com>
Thu, 5 Nov 2015 15:09:21 +0000 (10:09 -0500)
committerSam Hague <shague@redhat.com>
Thu, 5 Nov 2015 15:10:31 +0000 (10:10 -0500)
Change-Id: I0032fd368af59e23cecb26736b0e34723df58a0f
Signed-off-by: Sam Hague <shague@redhat.com>
utils/mdsal-openflow/pom.xml
utils/mdsal-utils/pom.xml

index bc983993b25890fee5ab410fd013d22c7b054dcc..474a582ebb221b7792a221bcc3688947e0768e0c 100644 (file)
@@ -94,6 +94,18 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
   </dependencies>
   <build>
     <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Export-Package>
+              org.opendaylight.ovsdb.utils.mdsal.openflow
+            </Export-Package>
+          </instructions>
+        </configuration>
+      </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-checkstyle-plugin</artifactId>
index ffdb77d2bea3b71906a7743f02d1e8dcad8512d7..d3f093b967801c98411a72080b844767058e6bf8 100644 (file)
     </dependency>
   </dependencies>
 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Export-Package>
+              org.opendaylight.ovsdb.utils.mdsal.utils
+            </Export-Package>
+          </instructions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>
\ No newline at end of file