BUG-5280: move AbstractDataTreeModificationCursor
[controller.git] / opendaylight / md-sal / 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
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>commons.opendaylight</artifactId>
8     <version>1.7.0-SNAPSHOT</version>
9     <relativePath>../commons/opendaylight</relativePath>
10   </parent>
11
12   <artifactId>sal-parent</artifactId>
13   <version>1.4.0-SNAPSHOT</version>
14   <packaging>pom</packaging>
15
16   <modules>
17     <module>mdsal-artifacts</module>
18
19     <!-- Common APIs & Implementation -->
20     <module>sal-common-api</module>
21     <module>sal-common-impl</module>
22     <module>sal-common-util</module>
23
24     <!-- Binding Independent -->
25     <module>sal-dom-api</module>
26     <module>sal-dom-broker</module>
27     <module>sal-dom-spi</module>
28
29     <!-- Binding Aware -->
30     <module>sal-binding-api</module>
31     <module>sal-binding-broker</module>
32
33     <module>sal-binding-util</module>
34
35     <!-- Config subsystem bindings -->
36     <module>sal-dom-config</module>
37     <module>sal-dom-broker-config</module>
38     <module>sal-binding-config</module>
39
40     <!-- Configuration File -->
41     <module>md-sal-config</module>
42
43     <!-- Samples -->
44     <module>samples</module>
45
46     <!-- Base Models -->
47     <module>sal-remote</module>
48
49     <!-- Connectors -->
50     <module>sal-connector-api</module>
51
52     <module>sal-akka-raft</module>
53     <module>sal-akka-raft-example</module>
54
55     <!--InMemory DOM DataStore-->
56     <module>sal-inmemory-datastore</module>
57
58     <module>sal-clustering-commons</module>
59     <module>cds-access-api</module>
60
61     <!-- sal clustering configuration -->
62     <module>sal-clustering-config</module>
63
64     <!-- sal-distributed-datastore -->
65     <module>sal-distributed-datastore</module>
66     <module>sal-dummy-distributed-datastore</module>
67     <module>sal-cluster-admin</module>
68
69     <!-- XSQL -->
70     <module>sal-dom-xsql</module>
71     <module>sal-karaf-xsql</module>
72     <module>sal-dom-xsql-config</module>
73
74     <!-- Yang Test Models for MD-SAL -->
75     <module>sal-test-model</module>
76
77     <!-- Clustering -->
78     <module>sal-remoterpc-connector</module>
79
80     <!-- Message Bus -->
81     <module>messagebus-api</module>
82     <module>messagebus-spi</module>
83     <module>messagebus-impl</module>
84     <module>messagebus-util</module>
85     <module>messagebus-config</module>
86
87     <!-- PAX EXAM ITs -->
88     <module>sal-binding-it</module>
89     <module>sal-binding-dom-it</module>
90
91     <!-- IT Base and Parent -->
92     <module>mdsal-it-base</module>
93     <module>mdsal-it-parent</module>
94
95   </modules>
96
97   <build>
98     <pluginManagement>
99       <plugins>
100         <plugin>
101           <groupId>org.apache.felix</groupId>
102           <artifactId>maven-bundle-plugin</artifactId>
103           <version>${bundle.plugin.version}</version>
104           <extensions>true</extensions>
105           <!--executions> <execution> <id>bundle-manifest</id>
106                         <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution>
107                         </executions -->
108           <configuration>
109             <instructions>
110               <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
111             </instructions>
112             <manifestLocation>${project.basedir}/META-INF</manifestLocation>
113           </configuration>
114         </plugin>
115         <!--This plugin's configuration is used to store Eclipse
116                     m2e settings only. It has no influence on the Maven build itself. -->
117         <plugin>
118           <groupId>org.eclipse.m2e</groupId>
119           <artifactId>lifecycle-mapping</artifactId>
120           <version>${lifecycle.mapping.version}</version>
121           <configuration>
122             <lifecycleMappingMetadata>
123               <pluginExecutions>
124                 <pluginExecution>
125                   <pluginExecutionFilter>
126                     <groupId>net.alchim31.maven</groupId>
127                     <artifactId>scala-maven-plugin</artifactId>
128                     <versionRange>[0,)</versionRange>
129                     <goals>
130                       <goal>compile</goal>
131                       <goal>testCompile</goal>
132                     </goals>
133                   </pluginExecutionFilter>
134                   <action>
135                     <ignore/>
136                   </action>
137                 </pluginExecution>
138                 <pluginExecution>
139                   <pluginExecutionFilter>
140                     <groupId>org.jacoco</groupId>
141                     <artifactId>jacoco-maven-plugin</artifactId>
142                     <versionRange>[0,)</versionRange>
143                     <goals>
144                       <goal>prepare-agent</goal>
145                     </goals>
146                   </pluginExecutionFilter>
147                   <action>
148                     <ignore/>
149                   </action>
150                 </pluginExecution>
151                 <pluginExecution>
152                   <pluginExecutionFilter>
153                     <groupId>org.opendaylight.yangtools</groupId>
154                     <artifactId>yang-maven-plugin</artifactId>
155                     <versionRange>[0.5,)</versionRange>
156                     <goals>
157                       <goal>generate-sources</goal>
158                     </goals>
159                   </pluginExecutionFilter>
160                   <action>
161                     <execute/>
162                   </action>
163                 </pluginExecution>
164               </pluginExecutions>
165             </lifecycleMappingMetadata>
166           </configuration>
167         </plugin>
168       </plugins>
169
170     </pluginManagement>
171     <plugins>
172       <plugin>
173         <groupId>org.apache.felix</groupId>
174         <artifactId>maven-bundle-plugin</artifactId>
175       </plugin>
176       <plugin>
177         <groupId>org.apache.maven.plugins</groupId>
178         <artifactId>maven-jar-plugin</artifactId>
179       </plugin>
180       <plugin>
181         <groupId>org.opendaylight.yangtools</groupId>
182         <artifactId>yang-maven-plugin</artifactId>
183         <dependencies>
184           <dependency>
185             <groupId>org.opendaylight.controller</groupId>
186             <artifactId>yang-jmx-generator-plugin</artifactId>
187             <version>${config.version}</version>
188           </dependency>
189         </dependencies>
190       </plugin>
191     </plugins>
192   </build>
193   <reporting>
194     <plugins>
195       <plugin>
196         <groupId>org.codehaus.mojo</groupId>
197         <artifactId>findbugs-maven-plugin</artifactId>
198         <version>${findbugs.maven.plugin.version}</version>
199         <configuration>
200           <effort>Max</effort>
201           <threshold>Low</threshold>
202           <goal>site</goal>
203         </configuration>
204       </plugin>
205     </plugins>
206   </reporting>
207   <scm>
208     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
209     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
210     <tag>HEAD</tag>
211     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
212   </scm>
213
214   <profiles>
215     <profile>
216       <id>benchmarks</id>
217       <activation>
218         <activeByDefault>false</activeByDefault>
219       </activation>
220       <modules>
221         <module>benchmark-data-store</module>
222       </modules>
223     </profile>
224   </profiles>
225 </project>