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