BUG-994: improve object cache
[yangtools.git] / common / object-cache-guava / pom.xml
index ee65f854960c78227e087e8e46d3eff4e217bfce..8a5b7c471aa3884acb4a3bc53602803997f8cfb4 100644 (file)
             <groupId>com.google.guava</groupId>
             <artifactId>guava</artifactId>
         </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <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.objcache.impl
+                        </Export-Package>
+                        <Private-Package>
+                            org.opendaylight.yangtools.objcache.guava
+                        </Private-Package>
+                    </instructions>
+                </configuration>
             </plugin>
         </plugins>
     </build>