Bump mockito to 5.12.0
[odlparent.git] / template-feature-plugin / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2021 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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <artifactId>odlparent</artifactId>
15         <groupId>org.opendaylight.odlparent</groupId>
16         <version>13.1.3-SNAPSHOT</version>
17         <relativePath>../odlparent/pom.xml</relativePath>
18     </parent>
19
20     <artifactId>template-feature-plugin</artifactId>
21     <packaging>maven-plugin</packaging>
22     <name>ODL :: odlparent :: ${project.artifactId}</name>
23
24     <prerequisites>
25         <maven>3.8.3</maven>
26     </prerequisites>
27
28     <dependencies>
29         <dependency>
30             <groupId>org.apache.maven</groupId>
31             <artifactId>maven-artifact</artifactId>
32             <version>3.8.3</version>
33             <scope>provided</scope>
34         </dependency>
35         <dependency>
36             <groupId>org.apache.maven</groupId>
37             <artifactId>maven-core</artifactId>
38             <version>3.8.3</version>
39             <scope>provided</scope>
40         </dependency>
41         <dependency>
42             <groupId>org.apache.maven</groupId>
43             <artifactId>maven-model</artifactId>
44             <version>3.8.3</version>
45             <scope>provided</scope>
46         </dependency>
47         <dependency>
48             <groupId>org.apache.maven</groupId>
49             <artifactId>maven-plugin-api</artifactId>
50             <version>3.8.3</version>
51             <scope>provided</scope>
52         </dependency>
53         <dependency>
54             <groupId>org.apache.maven.plugin-tools</groupId>
55             <artifactId>maven-plugin-annotations</artifactId>
56             <version>3.8.2</version>
57             <scope>provided</scope>
58         </dependency>
59         <dependency>
60             <groupId>org.apache.karaf.features</groupId>
61             <artifactId>org.apache.karaf.features.core</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.eclipse.jdt</groupId>
65             <artifactId>org.eclipse.jdt.annotation</artifactId>
66         </dependency>
67     </dependencies>
68
69     <build>
70         <plugins>
71             <plugin>
72                 <artifactId>maven-plugin-plugin</artifactId>
73                 <configuration>
74                     <goalPrefix>feattmpl</goalPrefix>
75                 </configuration>
76                 <executions>
77                     <execution>
78                         <id>mojo-descriptor</id>
79                         <goals>
80                             <goal>descriptor</goal>
81                         </goals>
82                     </execution>
83                 </executions>
84             </plugin>
85         </plugins>
86     </build>
87 </project>