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