EntityOwnershipService new module infrastructure
[mdsal.git] / binding / mdsal-binding-api / 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.mdsal</groupId>
6     <artifactId>mdsal-binding</artifactId>
7     <version>0.9.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>mdsal-binding-api</artifactId>
10   <version>2.1.0-SNAPSHOT</version>
11   <packaging>bundle</packaging>
12
13   <dependencies>
14     <!-- FIXME: Remove after moving Binding EOS API -->
15     <dependency>
16       <groupId>org.opendaylight.mdsal</groupId>
17       <artifactId>mdsal-eos-common-api</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.mdsal</groupId>
21       <artifactId>mdsal-eos-common-spi</artifactId>
22     </dependency>
23     <!-- End part for remove -->
24     <dependency>
25       <groupId>com.google.guava</groupId>
26       <artifactId>guava</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.mdsal</groupId>
30       <artifactId>mdsal-common-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.mdsal.model</groupId>
34       <artifactId>general-entity</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.yangtools</groupId>
38       <artifactId>concepts</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.mdsal</groupId>
42       <artifactId>yang-binding</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.yangtools</groupId>
46       <artifactId>yang-common</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.yangtools</groupId>
50       <artifactId>yang-data-api</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.osgi</groupId>
54       <artifactId>org.osgi.core</artifactId>
55       <scope>provided</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.apache.commons</groupId>
59       <artifactId>commons-lang3</artifactId>
60       <scope>test</scope>
61     </dependency>
62     <dependency>
63       <groupId>junit</groupId>
64       <artifactId>junit</artifactId>
65       <scope>test</scope>
66     </dependency>
67   </dependencies>
68   <scm>
69     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
70     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
71     <tag>HEAD</tag>
72     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
73   </scm>
74
75   <!--
76       Maven Site Configuration
77
78       The following configuration is necessary for maven-site-plugin to
79       correctly identify the correct deployment path for OpenDaylight Maven
80       sites.
81   -->
82   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
83
84   <distributionManagement>
85     <site>
86       <id>opendaylight-site</id>
87       <url>${nexus.site.url}/${project.artifactId}/</url>
88     </site>
89   </distributionManagement>
90
91 </project>