Bump GSON to 2.11.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>14.0.0-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.9.5</maven>
26     </prerequisites>
27
28     <dependencies>
29         <dependency>
30             <groupId>org.apache.maven</groupId>
31             <artifactId>maven-artifact</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.apache.maven</groupId>
35             <artifactId>maven-core</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.apache.maven</groupId>
39             <artifactId>maven-model</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.apache.maven</groupId>
43             <artifactId>maven-plugin-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.apache.maven.plugin-tools</groupId>
47             <artifactId>maven-plugin-annotations</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.apache.karaf.features</groupId>
51             <artifactId>org.apache.karaf.features.core</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.eclipse.jdt</groupId>
55             <artifactId>org.eclipse.jdt.annotation</artifactId>
56         </dependency>
57     </dependencies>
58
59     <build>
60         <plugins>
61             <plugin>
62                 <artifactId>maven-plugin-plugin</artifactId>
63                 <configuration>
64                     <goalPrefix>feattmpl</goalPrefix>
65                 </configuration>
66                 <executions>
67                     <execution>
68                         <id>mojo-descriptor</id>
69                         <goals>
70                             <goal>descriptor</goal>
71                         </goals>
72                     </execution>
73                 </executions>
74             </plugin>
75         </plugins>
76     </build>
77 </project>