Bump versions to 10.0.0-SNAPSHOT
[odlparent.git] / bnd-parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2021 PANTHEON.tech, s.r.o. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" 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
14     <parent>
15         <groupId>org.opendaylight.odlparent</groupId>
16         <artifactId>odlparent</artifactId>
17         <version>10.0.0-SNAPSHOT</version>
18         <relativePath>../odlparent</relativePath>
19     </parent>
20
21     <artifactId>bnd-parent</artifactId>
22     <packaging>pom</packaging>
23     <name>ODL :: odlparent :: ${project.artifactId}</name>
24
25     <!-- Annotations processed by bnd-maven-plugin -->
26     <dependencyManagement>
27         <dependencies>
28             <dependency>
29                 <groupId>biz.aQute.bnd</groupId>
30                 <artifactId>biz.aQute.bnd.annotation</artifactId>
31                 <version>6.0.0</version>
32                 <scope>provided</scope>
33             </dependency>
34         </dependencies>
35     </dependencyManagement>
36
37     <dependencies>
38         <dependency>
39             <groupId>org.osgi</groupId>
40             <artifactId>org.osgi.annotation.bundle</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.osgi</groupId>
44             <artifactId>org.osgi.annotation.versioning</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.osgi</groupId>
48             <artifactId>org.osgi.service.component.annotations</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.osgi</groupId>
52             <artifactId>org.osgi.service.metatype.annotations</artifactId>
53         </dependency>
54     </dependencies>
55
56     <build>
57         <pluginManagement>
58             <plugins>
59                 <plugin>
60                     <groupId>biz.aQute.bnd</groupId>
61                     <artifactId>bnd-maven-plugin</artifactId>
62                     <version>6.0.0</version>
63                 </plugin>
64             </plugins>
65         </pluginManagement>
66
67         <plugins>
68             <plugin>
69                 <artifactId>maven-javadoc-plugin</artifactId>
70             </plugin>
71             <plugin>
72                 <artifactId>maven-source-plugin</artifactId>
73             </plugin>
74             <plugin>
75                 <groupId>biz.aQute.bnd</groupId>
76                 <artifactId>bnd-maven-plugin</artifactId>
77                 <executions>
78                     <execution>
79                         <goals>
80                             <goal>bnd-process</goal>
81                         </goals>
82                     </execution>
83                 </executions>
84             </plugin>
85             <!--
86                 See https://github.com/bndtools/bnd/tree/master/maven/bnd-maven-plugin#important-note
87                 and https://issues.apache.org/jira/browse/MJAR-193
88             -->
89             <plugin>
90                 <groupId>org.apache.maven.plugins</groupId>
91                 <artifactId>maven-jar-plugin</artifactId>
92                 <configuration>
93                     <archive>
94                         <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
95                     </archive>
96                 </configuration>
97             </plugin>
98         </plugins>
99     </build>
100 </project>