Bumping versions by 0.0.1 for next dev cycle
[mdsal.git] / dom / mdsal-dom-inmemory-datastore / 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.1-SNAPSHOT</version>
8   </parent>
9
10   <artifactId>mdsal-dom-inmemory-datastore</artifactId>
11
12   <packaging>bundle</packaging>
13
14   <dependencies>
15     <dependency>
16       <groupId>com.google.guava</groupId>
17       <artifactId>guava</artifactId>
18     </dependency>
19
20     <dependency>
21       <groupId>org.opendaylight.mdsal</groupId>
22       <artifactId>mdsal-common-api</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.mdsal</groupId>
26       <artifactId>mdsal-dom-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.mdsal</groupId>
30       <artifactId>mdsal-dom-spi</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.yangtools</groupId>
34       <artifactId>concepts</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.yangtools</groupId>
38       <artifactId>util</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.yangtools</groupId>
42       <artifactId>yang-common</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.yangtools</groupId>
46       <artifactId>yang-data-api</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-parser-impl</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.osgi</groupId>
58       <artifactId>org.osgi.core</artifactId>
59     </dependency>
60
61     <dependency>
62       <groupId>org.slf4j</groupId>
63       <artifactId>slf4j-api</artifactId>
64     </dependency>
65
66     <!-- Test Dependencies -->
67     <dependency>
68       <groupId>junit</groupId>
69       <artifactId>junit</artifactId>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.slf4j</groupId>
74       <artifactId>slf4j-simple</artifactId>
75       <scope>test</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.yangtools</groupId>
79       <artifactId>mockito-configuration</artifactId>
80       <scope>test</scope>
81     </dependency>
82   </dependencies>
83
84   <build>
85     <plugins>
86       <plugin>
87         <groupId>org.apache.felix</groupId>
88         <artifactId>maven-bundle-plugin</artifactId>
89         <extensions>true</extensions>
90       </plugin>
91     </plugins>
92   </build>
93   <scm>
94     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
95     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
96     <tag>HEAD</tag>
97     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
98   </scm>
99
100
101   <!--
102       Maven Site Configuration
103
104       The following configuration is necessary for maven-site-plugin to
105       correctly identify the correct deployment path for OpenDaylight Maven
106       sites.
107   -->
108   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
109
110   <distributionManagement>
111     <site>
112       <id>opendaylight-site</id>
113       <url>${nexus.site.url}/${project.artifactId}/</url>
114     </site>
115   </distributionManagement>
116
117 </project>