Release odlparent
[odlparent.git] / feature-repo-parent / pom.xml
index 22e7f2e19f41575840c08f0836e8df1353558eab..02c89d75ce72ae4c11db456b6533311415c688a5 100644 (file)
@@ -26,7 +26,7 @@
     <parent>
         <groupId>org.opendaylight.odlparent</groupId>
         <artifactId>odlparent</artifactId>
-        <version>1.9.1-SNAPSHOT</version>
+        <version>13.0.9</version>
         <relativePath>../odlparent</relativePath>
     </parent>
 
     <name>ODL :: odlparent :: ${project.artifactId}</name>
 
     <properties>
-        <skip.karaf.featureTest>false</skip.karaf.featureTest>
+        <skip.karaf.featureTest>true</skip.karaf.featureTest>
         <jacoco.skip>true</jacoco.skip>
+
+        <!-- We typically do not have code in feature artifacts, which throws off maven-dependency-plugin -->
+        <odlparent.dependency.skip>true</odlparent.dependency.skip>
     </properties>
 
     <dependencies>
         <dependency>
             <groupId>org.opendaylight.odlparent</groupId>
             <artifactId>features-test</artifactId>
-            <version>1.9.1-SNAPSHOT</version>
+            <version>13.0.9</version>
             <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.opendaylight.odlparent</groupId>
             <artifactId>bundles-test-lib</artifactId>
-            <version>1.9.1-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
         <dependency>
             <plugin>
                 <groupId>org.apache.karaf.tooling</groupId>
                 <artifactId>karaf-maven-plugin</artifactId>
-                <version>${karaf.plugin.version}</version>
                 <extensions>true</extensions>
+                <configuration>
+                    <enableGeneration>true</enableGeneration>
+                </configuration>
             </plugin>
         </plugins>
+        <pluginManagement>
+          <plugins>
+            <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
+            <plugin>
+              <groupId>org.eclipse.m2e</groupId>
+              <artifactId>lifecycle-mapping</artifactId>
+              <version>1.0.0</version>
+              <configuration>
+                <lifecycleMappingMetadata>
+                  <pluginExecutions>
+                    <pluginExecution>
+                      <pluginExecutionFilter>
+                        <groupId>org.apache.karaf.tooling</groupId>
+                        <artifactId>karaf-maven-plugin</artifactId>
+                        <versionRange>[4.1.5,)</versionRange>
+                        <goals>
+                          <goal>verify</goal>
+                        </goals>
+                      </pluginExecutionFilter>
+                      <action>
+                        <ignore></ignore>
+                      </action>
+                    </pluginExecution>
+                  </pluginExecutions>
+                </lifecycleMappingMetadata>
+              </configuration>
+            </plugin>
+          </plugins>
+        </pluginManagement>
     </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>