b17336c96d239718f3de198ef96ae87ee144e036
[odlparent.git] / filter-manifest-plugin / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2019 Pantheon Technologies, 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         <artifactId>odlparent</artifactId>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <version>13.1.1</version>
15         <relativePath>../odlparent</relativePath>
16     </parent>
17     <artifactId>filter-manifest-plugin</artifactId>
18     <packaging>maven-plugin</packaging>
19     <name>ODL :: odlparent :: ${project.artifactId}</name>
20     <description>
21         Simple plugin for extracting a set of attributes from a source
22         MANIFEST.MF into an output. This is useful in situations where you
23         need to create a bundle based on some other bundle.
24     </description>
25
26     <prerequisites>
27         <maven>3.8.3</maven>
28     </prerequisites>
29
30     <dependencies>
31         <dependency>
32             <groupId>org.apache.maven</groupId>
33             <artifactId>maven-plugin-api</artifactId>
34             <version>3.8.3</version>
35             <scope>provided</scope>
36         </dependency>
37         <dependency>
38             <groupId>org.apache.maven.plugin-tools</groupId>
39             <artifactId>maven-plugin-annotations</artifactId>
40             <version>3.8.2</version>
41             <scope>provided</scope>
42         </dependency>
43     </dependencies>
44
45     <build>
46         <plugins>
47             <plugin>
48                 <artifactId>maven-plugin-plugin</artifactId>
49                 <configuration>
50                     <goalPrefix>fmanifest</goalPrefix>
51                 </configuration>
52                 <executions>
53                     <execution>
54                         <id>mojo-descriptor</id>
55                         <goals>
56                             <goal>descriptor</goal>
57                         </goals>
58                     </execution>
59                 </executions>
60             </plugin>
61         </plugins>
62     </build>
63 </project>