Clean-up pom.xml layout
[controller.git] / opendaylight / md-sal / messagebus-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Cisco Systems, Inc. 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
14     <parent>
15         <groupId>org.opendaylight.mdsal</groupId>
16         <artifactId>binding-parent</artifactId>
17         <version>0.10.0-SNAPSHOT</version>
18         <relativePath/>
19     </parent>
20
21     <groupId>org.opendaylight.controller</groupId>
22     <version>1.5.0-SNAPSHOT</version>
23     <artifactId>messagebus-api</artifactId>
24     <name>${project.artifactId}</name>
25     <packaging>bundle</packaging>
26
27     <dependencyManagement>
28         <dependencies>
29             <dependency>
30                 <groupId>org.opendaylight.mdsal</groupId>
31                 <artifactId>mdsal-artifacts</artifactId>
32                 <version>2.2.0-SNAPSHOT</version>
33                 <type>pom</type>
34                 <scope>import</scope>
35             </dependency>
36             <dependency>
37                 <groupId>org.opendaylight.controller</groupId>
38                 <artifactId>mdsal-artifacts</artifactId>
39                 <version>1.5.0-SNAPSHOT</version>
40                 <type>pom</type>
41                 <scope>import</scope>
42             </dependency>
43         </dependencies>
44     </dependencyManagement>
45
46     <dependencies>
47         <dependency>
48             <groupId>org.opendaylight.controller.model</groupId>
49             <artifactId>model-inventory</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.mdsal.model</groupId>
53             <artifactId>yang-ext</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.mdsal.model</groupId>
57             <artifactId>ietf-topology</artifactId>
58         </dependency>
59     </dependencies>
60
61     <build>
62         <plugins>
63             <plugin>
64                 <groupId>org.apache.felix</groupId>
65                 <artifactId>maven-bundle-plugin</artifactId>
66                 <extensions>true</extensions>
67                 <configuration>
68                     <instructions>
69                         <Export-Package>org.opendaylight.yang.gen.v1.urn.cisco.params.xml.ns.yang.messagebus.*</Export-Package>
70                     </instructions>
71                 </configuration>
72             </plugin>
73         </plugins>
74     </build>
75 </project>