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