Add missing <name> fields for pom.xml files
[lispflowmapping.git] / distribution-karaf / pom.xml
index d99ca575d94ed5bcf15ba1f00a1fb1ce01185357..3de27efbdbea4c4e823d86e1e0ea550e212bd997 100644 (file)
@@ -10,23 +10,25 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <groupId>org.opendaylight.controller</groupId>
+    <groupId>org.opendaylight.odlparent</groupId>
     <artifactId>karaf-parent</artifactId>
-    <version>1.6.0-SNAPSHOT</version>
+    <version>1.8.0-SNAPSHOT</version>
     <relativePath/>
   </parent>
 
   <groupId>org.opendaylight.lispflowmapping</groupId>
   <artifactId>distribution-karaf</artifactId>
-  <version>1.3.0-SNAPSHOT</version>
-  <name>LISP Flow Mapping Project - Karaf Distribution</name>
+  <version>1.5.0-SNAPSHOT</version>
+  <!-- <name> formatting is used by autorelease to parse and notify projects on
+       build failure. Please do not modify this unless you have a good reason. -->
+  <name>ODL :: lispflowmapping :: ${project.artifactId}</name>
 
   <prerequisites>
     <maven>3.1.1</maven>
   </prerequisites>
 
   <properties>
-    <karaf.localFeature>odl-lispflowmapping-all</karaf.localFeature>
+    <karaf.localFeature>odl-lispflowmapping-msmr</karaf.localFeature>
   </properties>
 
   <dependencyManagement>
@@ -68,13 +70,23 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
           <skip>true</skip>
         </configuration>
       </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-install-plugin</artifactId>
-        <configuration>
-          <skip>true</skip>
-        </configuration>
-      </plugin>
     </plugins>
-  </build> 
-</project>
\ No newline at end of file
+  </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>