Drop obsolete Maven site configuration
[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>config-parent</artifactId>
7     <version>0.8.0-SNAPSHOT</version>
8     <relativePath>../../config/config-parent</relativePath>
9   </parent>
10
11   <artifactId>sal-dom-broker-config</artifactId>
12   <version>1.7.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>org.opendaylight.controller</groupId>
18       <artifactId>config-api</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>org.opendaylight.controller</groupId>
22       <artifactId>sal-dom-config</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.controller</groupId>
26       <artifactId>sal-broker-impl</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.mdsal.model</groupId>
30       <artifactId>ietf-yang-types-20130715</artifactId>
31     </dependency>
32   </dependencies>
33
34   <build>
35     <plugins>
36       <plugin>
37         <groupId>org.apache.felix</groupId>
38         <artifactId>maven-bundle-plugin</artifactId>
39         <extensions>true</extensions>
40         <configuration>
41           <instructions>
42             <Export-Package>
43                {local-packages},
44                org.opendaylight.controller.config.yang.md.sal.dom.impl,
45                org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.dom.impl.*
46              </Export-Package>
47           </instructions>
48         </configuration>
49       </plugin>
50     </plugins>
51   </build>
52
53   <scm>
54     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
55     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
56     <tag>HEAD</tag>
57     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
58   </scm>
59
60 </project>