Rework SingleFeatureTest
[odlparent.git] / features-test-plugin-it / src / it / test-feature-parent / pom.xml
diff --git a/features-test-plugin-it/src/it/test-feature-parent/pom.xml b/features-test-plugin-it/src/it/test-feature-parent/pom.xml
new file mode 100644 (file)
index 0000000..9186a19
--- /dev/null
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2023 PANTHEON.tech s.r.o. and others. All rights reserved.
+
+ This program and the accompanying materials are made available under the
+ terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ and is available at http://www.eclipse.org/legal/epl-v10.html
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.opendaylight.odlparent</groupId>
+        <artifactId>odlparent</artifactId>
+        <version>@project.version@</version>
+        <relativePath>../../../../odlparent</relativePath>
+    </parent>
+
+    <groupId>features-test-it</groupId>
+    <artifactId>features-test-it-parent</artifactId>
+    <packaging>pom</packaging>
+
+    <properties>
+        <odlparent.dependency.skip>true</odlparent.dependency.skip>
+        <jacoco.skip>true</jacoco.skip>
+        <spotbugs.skip>true</spotbugs.skip>
+        <maven.javadoc.skip>true</maven.javadoc.skip>
+        <maven.deploy.skip>true</maven.deploy.skip>
+    </properties>
+
+    <build>
+        <plugins>
+            <!-- build features.xml -->
+            <plugin>
+                <groupId>org.apache.karaf.tooling</groupId>
+                <artifactId>karaf-maven-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <enableGeneration>true</enableGeneration>
+                </configuration>
+            </plugin>
+            <!-- execute SFT -->
+            <plugin>
+                <groupId>org.opendaylight.odlparent</groupId>
+                <artifactId>features-test-plugin</artifactId>
+                <extensions>true</extensions>
+                <version>@project.version@</version>
+                <configuration>
+                    <keepUnpack>false</keepUnpack>
+                    <concurrent>true</concurrent>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>integration-test</id>
+                        <phase>test</phase>
+                        <goals>
+                            <goal>test</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>
\ No newline at end of file