Bug 1224, Bug 1221: Added Test case scenarios for Data Change Events.
[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       <scope>test</scope>
109     </dependency>
110     <dependency>
111       <groupId>org.opendaylight.yangtools</groupId>
112       <artifactId>binding-generator-impl</artifactId>
113       <scope>test</scope>
114     </dependency>
115     <dependency>
116       <groupId>org.opendaylight.controller</groupId>
117       <artifactId>sal-test-model</artifactId>
118       <scope>test</scope>
119       <version>${project.version}</version>
120     </dependency>
121   </dependencies>
122
123   <build>
124     <plugins>
125       <plugin>
126         <groupId>org.apache.felix</groupId>
127         <artifactId>maven-bundle-plugin</artifactId>
128         <extensions>true</extensions>
129         <configuration>
130           <instructions>
131             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
132
133             <Export-Package>org.opendaylight.controller.md.sal.dom.store.impl.*</Export-Package>
134
135             <Import-Package>*</Import-Package>
136           </instructions>
137         </configuration>
138       </plugin>
139       <plugin>
140         <groupId>org.jacoco</groupId>
141         <artifactId>jacoco-maven-plugin</artifactId>
142         <configuration>
143           <includes>
144             <include>org.opendaylight.controller.*</include>
145           </includes>
146           <check>false</check>
147         </configuration>
148         <executions>
149           <execution>
150             <id>pre-test</id>
151             <goals>
152               <goal>prepare-agent</goal>
153             </goals>
154           </execution>
155           <execution>
156             <id>post-test</id>
157             <goals>
158               <goal>report</goal>
159             </goals>
160             <phase>test</phase>
161           </execution>
162         </executions>
163       </plugin>
164       <plugin>
165         <groupId>org.opendaylight.yangtools</groupId>
166         <artifactId>yang-maven-plugin</artifactId>
167         <executions>
168           <execution>
169             <id>config</id>
170             <goals>
171               <goal>generate-sources</goal>
172             </goals>
173             <configuration>
174               <codeGenerators>
175                 <generator>
176                   <codeGeneratorClass>org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator</codeGeneratorClass>
177                   <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
178                   <additionalConfiguration>
179                     <namespaceToPackage1>urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang</namespaceToPackage1>
180                   </additionalConfiguration>
181                 </generator>
182                 <generator>
183                   <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
184                   <outputBaseDir>${salGeneratorPath}</outputBaseDir>
185                 </generator>
186               </codeGenerators>
187               <inspectDependencies>true</inspectDependencies>
188             </configuration>
189           </execution>
190         </executions>
191       </plugin>
192     </plugins>
193   </build>
194   <scm>
195     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
196     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
197     <tag>HEAD</tag>
198     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
199   </scm>
200
201 </project>