Cleanup sal-dom-config/pom.xml
[controller.git] / opendaylight / md-sal / sal-dom-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-plugin-parent</artifactId>
7     <version>0.6.0-SNAPSHOT</version>
8     <relativePath>../../config/config-plugin-parent</relativePath>
9   </parent>
10   <artifactId>sal-dom-config</artifactId>
11   <version>1.5.0-SNAPSHOT</version>
12   <packaging>bundle</packaging>
13
14   <dependencyManagement>
15     <dependencies>
16       <dependency>
17         <groupId>org.opendaylight.mdsal</groupId>
18         <artifactId>mdsal-artifacts</artifactId>
19         <version>2.2.0-SNAPSHOT</version>
20         <type>pom</type>
21         <scope>import</scope>
22       </dependency>
23       <dependency>
24         <groupId>org.opendaylight.controller</groupId>
25         <artifactId>mdsal-artifacts</artifactId>
26         <version>1.5.0-SNAPSHOT</version>
27         <type>pom</type>
28         <scope>import</scope>
29       </dependency>
30     </dependencies>
31   </dependencyManagement>
32
33   <dependencies>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>config-api</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>sal-common-api</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>sal-core-api</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>sal-core-spi</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.mdsal</groupId>
52       <artifactId>mdsal-singleton-dom-impl</artifactId>
53     </dependency>
54   </dependencies>
55
56   <build>
57     <plugins>
58       <plugin>
59         <groupId>org.apache.felix</groupId>
60         <artifactId>maven-bundle-plugin</artifactId>
61         <extensions>true</extensions>
62         <configuration>
63           <instructions>
64             <Import-Package>
65               com.google.common.base,
66               org.opendaylight.mdsal.eos.common.api,
67               org.opendaylight.mdsal.eos.dom.api,
68               org.opendaylight.mdsal.singleton.common.api,
69               *
70             </Import-Package>
71           </instructions>
72         </configuration>
73       </plugin>
74     </plugins>
75   </build>
76
77   <scm>
78     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
79     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
80     <tag>HEAD</tag>
81     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
82   </scm>
83
84   <!--
85       Maven Site Configuration
86
87       The following configuration is necessary for maven-site-plugin to
88       correctly identify the correct deployment path for OpenDaylight Maven
89       sites.
90   -->
91   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
92
93   <distributionManagement>
94     <site>
95       <id>opendaylight-site</id>
96       <url>${nexus.site.url}/${project.artifactId}/</url>
97     </site>
98   </distributionManagement>
99 </project>