f0ed08981989963345425f3b44997c6e6b01d4e8
[controller.git] / opendaylight / md-sal / sal-dom-broker-config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>mdsal-parent</artifactId>
7     <version>1.8.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <artifactId>sal-dom-broker-config</artifactId>
12   <version>1.8.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <properties>
16     <!-- The Java classes are mostly config yang-generated wjich we don't want analyzed by findbugs.
17          However the generated package names don't conform to the findbugs exclusion filter
18          hence we explicitly skip findbugs. -->
19     <findbugs.skip>true</findbugs.skip>
20   </properties>
21
22   <dependencies>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>sal-dom-config</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>sal-broker-impl</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.mdsal.model</groupId>
33       <artifactId>ietf-yang-types-20130715</artifactId>
34     </dependency>
35   </dependencies>
36
37   <build>
38     <plugins>
39       <plugin>
40         <groupId>org.apache.felix</groupId>
41         <artifactId>maven-bundle-plugin</artifactId>
42         <extensions>true</extensions>
43         <configuration>
44           <instructions>
45             <Export-Package>
46                {local-packages},
47                org.opendaylight.controller.config.yang.md.sal.dom.impl,
48                org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.dom.impl.*
49              </Export-Package>
50           </instructions>
51         </configuration>
52       </plugin>
53     </plugins>
54   </build>
55
56   <scm>
57     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
58     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
59     <tag>HEAD</tag>
60     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
61   </scm>
62
63 </project>