Bump versions by x.(y+1).z for next dev cycle
[controller.git] / opendaylight / md-sal / sal-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.controller</groupId>
6     <artifactId>mdsal-parent</artifactId>
7     <version>1.9.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <artifactId>sal-inmemory-datastore</artifactId>
12   <version>1.9.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <!-- SAL Dependencies -->
17
18     <dependency>
19       <groupId>org.opendaylight.controller</groupId>
20       <artifactId>sal-binding-api</artifactId>
21     </dependency>
22
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>sal-common-api</artifactId>
26     </dependency>
27
28     <dependency>
29       <groupId>org.opendaylight.controller</groupId>
30       <artifactId>sal-common-util</artifactId>
31     </dependency>
32
33     <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>sal-core-compat</artifactId>
36     </dependency>
37
38     <dependency>
39       <groupId>org.opendaylight.yangtools</groupId>
40       <artifactId>concepts</artifactId>
41     </dependency>
42
43     <dependency>
44       <groupId>org.opendaylight.yangtools</groupId>
45       <artifactId>util</artifactId>
46     </dependency>
47
48     <dependency>
49       <groupId>org.opendaylight.mdsal</groupId>
50       <artifactId>yang-binding</artifactId>
51     </dependency>
52
53     <dependency>
54       <groupId>org.opendaylight.yangtools</groupId>
55       <artifactId>yang-data-api</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.yangtools</groupId>
59       <artifactId>yang-data-impl</artifactId>
60     </dependency>
61
62     <dependency>
63       <groupId>org.opendaylight.mdsal</groupId>
64       <artifactId>mdsal-dom-inmemory-datastore</artifactId>
65     </dependency>
66
67     <dependency>
68       <groupId>org.osgi</groupId>
69       <artifactId>org.osgi.core</artifactId>
70     </dependency>
71
72     <dependency>
73       <groupId>org.slf4j</groupId>
74       <artifactId>slf4j-api</artifactId>
75     </dependency>
76
77     <!-- Test Dependencies -->
78     <dependency>
79       <groupId>junit</groupId>
80       <artifactId>junit</artifactId>
81       <scope>test</scope>
82     </dependency>
83     <dependency>
84       <groupId>org.slf4j</groupId>
85       <artifactId>slf4j-simple</artifactId>
86       <scope>test</scope>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.mdsal</groupId>
90       <artifactId>mdsal-binding-generator-impl</artifactId>
91       <scope>test</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.yangtools</groupId>
95       <artifactId>mockito-configuration</artifactId>
96       <scope>test</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.controller</groupId>
100       <artifactId>sal-test-model</artifactId>
101       <scope>test</scope>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.yangtools</groupId>
105       <artifactId>yang-test-util</artifactId>
106     </dependency>
107   </dependencies>
108
109   <build>
110     <plugins>
111       <plugin>
112         <groupId>org.apache.felix</groupId>
113         <artifactId>maven-bundle-plugin</artifactId>
114         <extensions>true</extensions>
115         <configuration>
116           <instructions>
117             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
118             <Export-Package>org.opendaylight.controller.md.sal.dom.store.impl.*</Export-Package>
119           </instructions>
120         </configuration>
121       </plugin>
122     </plugins>
123   </build>
124
125   <scm>
126     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
127     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
128     <tag>HEAD</tag>
129     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
130   </scm>
131
132 </project>