Merge "BUG 1204 - exception if multiple container node occures"
[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>sal-parent</artifactId>
7     <version>1.1-SNAPSHOT</version>
8   </parent>
9
10   <artifactId>sal-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     <!-- SAL Dependencies -->
21
22     <dependency>
23       <groupId>org.opendaylight.controller</groupId>
24       <artifactId>config-api</artifactId>
25     </dependency>
26
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>sal-binding-api</artifactId>
30     </dependency>
31
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>sal-binding-config</artifactId>
35     </dependency>
36
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>sal-common-api</artifactId>
40     </dependency>
41
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>sal-common-util</artifactId>
45     </dependency>
46
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>sal-core-api</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>sal-core-spi</artifactId>
54     </dependency>
55
56     <dependency>
57       <groupId>org.opendaylight.yangtools</groupId>
58       <artifactId>concepts</artifactId>
59     </dependency>
60
61     <dependency>
62       <groupId>org.opendaylight.yangtools</groupId>
63       <artifactId>util</artifactId>
64     </dependency>
65
66     <dependency>
67       <groupId>org.opendaylight.yangtools</groupId>
68       <artifactId>yang-binding</artifactId>
69     </dependency>
70
71     <dependency>
72       <groupId>org.opendaylight.yangtools</groupId>
73       <artifactId>yang-common</artifactId>
74     </dependency>
75
76     <dependency>
77       <groupId>org.opendaylight.yangtools</groupId>
78       <artifactId>yang-data-api</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.yangtools</groupId>
82       <artifactId>yang-data-impl</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.yangtools</groupId>
86       <artifactId>yang-parser-impl</artifactId>
87     </dependency>
88
89     <dependency>
90       <groupId>org.osgi</groupId>
91       <artifactId>org.osgi.core</artifactId>
92     </dependency>
93
94     <dependency>
95       <groupId>org.slf4j</groupId>
96       <artifactId>slf4j-api</artifactId>
97     </dependency>
98
99     <!-- Test Dependencies -->
100     <dependency>
101       <groupId>junit</groupId>
102       <artifactId>junit</artifactId>
103       <scope>test</scope>
104     </dependency>
105     <dependency>
106       <groupId>org.slf4j</groupId>
107       <artifactId>slf4j-simple</artifactId>
108       <version>${slf4j.version}</version>
109       <scope>test</scope>
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
123             <Export-Package>org.opendaylight.controller.md.sal.dom.store.impl.*</Export-Package>
124
125             <Import-Package>*</Import-Package>
126           </instructions>
127         </configuration>
128       </plugin>
129       <plugin>
130         <groupId>org.jacoco</groupId>
131         <artifactId>jacoco-maven-plugin</artifactId>
132         <configuration>
133           <includes>
134             <include>org.opendaylight.controller.*</include>
135           </includes>
136           <check>false</check>
137         </configuration>
138         <executions>
139           <execution>
140             <id>pre-test</id>
141             <goals>
142               <goal>prepare-agent</goal>
143             </goals>
144           </execution>
145           <execution>
146             <id>post-test</id>
147             <goals>
148               <goal>report</goal>
149             </goals>
150             <phase>test</phase>
151           </execution>
152         </executions>
153       </plugin>
154       <plugin>
155         <groupId>org.opendaylight.yangtools</groupId>
156         <artifactId>yang-maven-plugin</artifactId>
157         <executions>
158           <execution>
159             <id>config</id>
160             <goals>
161               <goal>generate-sources</goal>
162             </goals>
163             <configuration>
164               <codeGenerators>
165                 <generator>
166                   <codeGeneratorClass>org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator</codeGeneratorClass>
167                   <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
168                   <additionalConfiguration>
169                     <namespaceToPackage1>urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang</namespaceToPackage1>
170                   </additionalConfiguration>
171                 </generator>
172                 <generator>
173                   <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
174                   <outputBaseDir>${salGeneratorPath}</outputBaseDir>
175                 </generator>
176               </codeGenerators>
177               <inspectDependencies>true</inspectDependencies>
178             </configuration>
179           </execution>
180         </executions>
181       </plugin>
182     </plugins>
183   </build>
184   <scm>
185     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
186     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
187     <tag>HEAD</tag>
188     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
189   </scm>
190
191 </project>