Bump asciidoctor-maven-plugin to 2.2.6
[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.0.11-SNAPSHOT</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>opendaylight-karaf-empty</artifactId>
41             <version>${project.version}</version>
42             <type>tar.gz</type>
43         </dependency>
44     </dependencies>
45
46     <build>
47          <plugins>
48              <plugin>
49                 <artifactId>maven-invoker-plugin</artifactId>
50                 <configuration>
51                     <projectsDirectory>src/it</projectsDirectory>
52                     <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
53                     <pomExcludes>
54                         <pomExclude>test-feature-parent/pom.xml</pomExclude>
55                     </pomExcludes>
56                     <debug>true</debug>
57                 </configuration>
58                 <executions>
59                     <execution>
60                         <id>integration-test</id>
61                         <goals>
62                             <goal>integration-test</goal>
63                             <goal>verify</goal>
64                         </goals>
65                     </execution>
66                 </executions>
67             </plugin>
68         </plugins>
69     </build>
70 </project>