3939423e4c2091f16ade756300ad76698a891307
[controller.git] / opendaylight / md-sal / sal-binding-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.8.0-SNAPSHOT</version>
8     <relativePath>../../config/config-plugin-parent</relativePath>
9   </parent>
10
11   <artifactId>sal-binding-config</artifactId>
12   <version>1.7.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencyManagement>
16     <dependencies>
17       <dependency>
18         <groupId>org.opendaylight.mdsal</groupId>
19         <artifactId>mdsal-artifacts</artifactId>
20         <version>2.4.0-SNAPSHOT</version>
21         <type>pom</type>
22         <scope>import</scope>
23       </dependency>
24       <dependency>
25         <groupId>org.opendaylight.controller</groupId>
26         <artifactId>mdsal-artifacts</artifactId>
27         <version>1.7.0-SNAPSHOT</version>
28         <type>pom</type>
29         <scope>import</scope>
30       </dependency>
31     </dependencies>
32   </dependencyManagement>
33
34   <dependencies>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>config-api</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.controller</groupId>
41       <artifactId>sal-binding-api</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>sal-dom-config</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>sal-binding-broker-impl</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.mdsal</groupId>
53       <artifactId>mdsal-binding-dom-codec</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.mdsal.model</groupId>
57       <artifactId>ietf-yang-types-20130715</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             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
70             <Export-Package>
71                             {local-packages},
72                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.binding.impl.rev131028.*,
73                             org.opendaylight.controller.config.yang.md.sal.binding.impl
74             </Export-Package>
75           </instructions>
76         </configuration>
77       </plugin>
78     </plugins>
79   </build>
80
81   <scm>
82     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
83     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
84     <tag>HEAD</tag>
85     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
86   </scm>
87
88   <!--
89       Maven Site Configuration
90
91       The following configuration is necessary for maven-site-plugin to
92       correctly identify the correct deployment path for OpenDaylight Maven
93       sites.
94   -->
95   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
96
97   <distributionManagement>
98     <site>
99       <id>opendaylight-site</id>
100       <url>${nexus.site.url}/${project.artifactId}/</url>
101     </site>
102   </distributionManagement>
103 </project>