a84b72d56c391d516898925fc79e16a36989f115
[odlparent.git] / features-test-plugin-it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2023 PANTHEON.tech, s.r.o. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8  -->
9 <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">
10     <modelVersion>4.0.0</modelVersion>
11     <parent>
12         <groupId>org.opendaylight.odlparent</groupId>
13         <artifactId>odlparent</artifactId>
14         <version>13.1.1</version>
15         <relativePath>../odlparent</relativePath>
16     </parent>
17
18     <artifactId>features-test-plugin-it</artifactId>
19     <packaging>pom</packaging>
20     <name>ODL :: odlparent :: ${project.artifactId}</name>
21
22     <properties>
23         <jacoco.skip>true</jacoco.skip>
24         <spotbugs.skip>true</spotbugs.skip>
25         <maven.javadoc.skip>true</maven.javadoc.skip>
26         <jacoco.skip>true</jacoco.skip>
27         <maven.install.skip>true</maven.install.skip>
28         <maven.deploy.skip>true</maven.deploy.skip>
29     </properties>
30
31     <dependencies>
32         <!-- set dependencies to ensure current module is processed after listed below -->
33         <dependency>
34             <groupId>org.opendaylight.odlparent</groupId>
35             <artifactId>features-test-plugin</artifactId>
36             <version>${project.version}</version>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.odlparent</groupId>
40             <artifactId>odlparent-artifacts</artifactId>
41             <version>${project.version}</version>
42             <type>pom</type>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.odlparent</groupId>
46             <artifactId>opendaylight-karaf-empty</artifactId>
47             <version>${project.version}</version>
48             <type>tar.gz</type>
49         </dependency>
50     </dependencies>
51
52     <build>
53          <plugins>
54              <plugin>
55                 <artifactId>maven-invoker-plugin</artifactId>
56                 <configuration>
57                     <projectsDirectory>src/it</projectsDirectory>
58                     <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
59                     <pomExcludes>
60                         <pomExclude>test-feature-parent/pom.xml</pomExclude>
61                     </pomExcludes>
62                     <debug>true</debug>
63                 </configuration>
64                 <executions>
65                     <execution>
66                         <id>integration-test</id>
67                         <goals>
68                             <goal>integration-test</goal>
69                             <goal>verify</goal>
70                         </goals>
71                     </execution>
72                 </executions>
73             </plugin>
74         </plugins>
75     </build>
76 </project>