Create a parent pom for md-sal sub-projects
[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.8.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <artifactId>sal-inmemory-datastore</artifactId>
12   <version>1.8.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-api</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>sal-core-spi</artifactId>
40     </dependency>
41
42     <dependency>
43       <groupId>org.opendaylight.yangtools</groupId>
44       <artifactId>concepts</artifactId>
45     </dependency>
46
47     <dependency>
48       <groupId>org.opendaylight.yangtools</groupId>
49       <artifactId>util</artifactId>
50     </dependency>
51
52     <dependency>
53       <groupId>org.opendaylight.mdsal</groupId>
54       <artifactId>yang-binding</artifactId>
55     </dependency>
56
57     <dependency>
58       <groupId>org.opendaylight.yangtools</groupId>
59       <artifactId>yang-data-api</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.yangtools</groupId>
63       <artifactId>yang-data-impl</artifactId>
64     </dependency>
65
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>sal-dom-config</artifactId>
69     </dependency>
70
71     <dependency>
72       <groupId>org.osgi</groupId>
73       <artifactId>org.osgi.core</artifactId>
74     </dependency>
75
76     <dependency>
77       <groupId>org.slf4j</groupId>
78       <artifactId>slf4j-api</artifactId>
79     </dependency>
80
81     <!-- Test Dependencies -->
82     <dependency>
83       <groupId>junit</groupId>
84       <artifactId>junit</artifactId>
85       <scope>test</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.slf4j</groupId>
89       <artifactId>slf4j-simple</artifactId>
90       <scope>test</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.mdsal</groupId>
94       <artifactId>mdsal-binding-generator-impl</artifactId>
95       <scope>test</scope>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.yangtools</groupId>
99       <artifactId>mockito-configuration</artifactId>
100       <scope>test</scope>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.controller</groupId>
104       <artifactId>sal-test-model</artifactId>
105       <scope>test</scope>
106     </dependency>
107     <dependency>
108       <groupId>org.opendaylight.yangtools</groupId>
109       <artifactId>yang-test-util</artifactId>
110     </dependency>
111   </dependencies>
112
113   <build>
114     <plugins>
115       <plugin>
116         <groupId>org.apache.felix</groupId>
117         <artifactId>maven-bundle-plugin</artifactId>
118         <extensions>true</extensions>
119         <configuration>
120           <instructions>
121             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
122             <Export-Package>org.opendaylight.controller.md.sal.dom.store.impl.*</Export-Package>
123           </instructions>
124         </configuration>
125       </plugin>
126     </plugins>
127   </build>
128
129   <scm>
130     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
131     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
132     <tag>HEAD</tag>
133     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
134   </scm>
135
136 </project>