Bumping versions by 0.0.1 for next dev cycle
[yangtools.git] / common / object-cache-noop / pom.xml
index e2c9bce995b928f91cd0e14119fe1c5b33594a2c..b03cb2beca617141e2e8fe0bb9c87c26eacdbe3f 100644 (file)
@@ -11,8 +11,9 @@
 
     <parent>
         <groupId>org.opendaylight.yangtools</groupId>
-        <artifactId>common-parent</artifactId>
-        <version>0.6.2-SNAPSHOT</version>
+        <artifactId>yangtools-parent</artifactId>
+        <version>0.8.1-SNAPSHOT</version>
+        <relativePath>/../../common/parent/pom.xml</relativePath>
     </parent>
     <packaging>bundle</packaging>
     <modelVersion>4.0.0</modelVersion>
             <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.noop
+                        </Private-Package>
+                    </instructions>
+                </configuration>
             </plugin>
         </plugins>
     </build>
+
+  <!--
+      Maven Site Configuration
+
+      The following configuration is necessary for maven-site-plugin to
+      correctly identify the correct deployment path for OpenDaylight Maven
+      sites.
+  -->
+  <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
+
+  <distributionManagement>
+    <site>
+      <id>opendaylight-site</id>
+      <url>${nexus.site.url}/${project.artifactId}/</url>
+    </site>
+  </distributionManagement>
 </project>