Export org.opendaylight.yangtools.yang.data.tree.impl.di 06/100006/1
authorRobert Varga <robert.varga@pantheon.tech>
Tue, 8 Mar 2022 18:45:01 +0000 (19:45 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Tue, 8 Mar 2022 18:45:01 +0000 (19:45 +0100)
Downstreams are not ready for us shutting down access to this package
in OSGi world. Make sure it is exported.

Change-Id: Iadce73e45f622a7bb496ba29643f4f84baff9150
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
data/yang-data-tree-ri/pom.xml

index f92d298f78bbd2c14db99f2cfe6b7e6e7fc6c038..fd3b7726e28f19bc8640514d560d60a02843dd9b 100644 (file)
             <scope>test</scope>
         </dependency>
     </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Export-Package>
+                            org.opendaylight.yangtools.yang.data.tree.impl.di,
+                            org.opendaylight.yangtools.yang.data.tree.leafref
+                        </Export-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>