Rework BouncyCastle/OSGi integration
[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>4.0.8-SNAPSHOT</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.3.9</maven>
28     </prerequisites>
29
30     <dependencies>
31         <dependency>
32             <groupId>org.apache.maven</groupId>
33             <artifactId>maven-plugin-api</artifactId>
34             <version>3.3.9</version>
35         </dependency>
36         <dependency>
37             <groupId>org.apache.maven.plugin-tools</groupId>
38             <artifactId>maven-plugin-annotations</artifactId>
39             <version>3.3</version>
40             <scope>provided</scope>
41         </dependency>
42     </dependencies>
43
44     <build>
45         <plugins>
46             <plugin>
47                 <groupId>org.apache.maven.plugins</groupId>
48                 <artifactId>maven-plugin-plugin</artifactId>
49                 <executions>
50                     <execution>
51                         <id>mojo-descriptor</id>
52                         <goals>
53                             <goal>descriptor</goal>
54                         </goals>
55                     </execution>
56                 </executions>
57             </plugin>
58             <plugin>
59                 <groupId>org.apache.maven.plugins</groupId>
60                 <artifactId>maven-checkstyle-plugin</artifactId>
61                 <configuration>
62                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
63                 </configuration>
64             </plugin>
65             <plugin>
66                 <groupId>com.github.spotbugs</groupId>
67                 <artifactId>spotbugs-maven-plugin</artifactId>
68                 <configuration>
69                     <failOnError>true</failOnError>
70                 </configuration>
71             </plugin>
72         </plugins>
73     </build>
74 </project>