Merge "BUG-832 Add schemaContext to notification parsing process in sal-netcon-connector"
[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.4.2-SNAPSHOT</version>
9     <relativePath>../commons/opendaylight</relativePath>
10   </parent>
11
12   <artifactId>sal-parent</artifactId>
13   <version>1.1-SNAPSHOT</version>
14   <packaging>pom</packaging>
15
16   <modules>
17     <!-- Common APIs & Implementation -->
18     <module>sal-common</module>
19     <module>sal-common-api</module>
20     <module>sal-common-impl</module>
21     <module>sal-common-util</module>
22
23     <!-- Binding Independent -->
24     <module>sal-dom-api</module>
25     <module>sal-dom-broker</module>
26     <module>sal-dom-spi</module>
27
28     <!-- Binding Aware -->
29     <module>sal-binding-api</module>
30     <module>sal-binding-config</module>
31     <module>sal-binding-broker</module>
32
33     <module>sal-binding-util</module>
34
35     <!-- Samples -->
36     <module>samples</module>
37
38     <!-- Base Models -->
39     <module>model</module>
40     <module>sal-remote</module>
41     <module>sal-restconf-broker</module>
42
43     <!-- Connectors -->
44     <module>sal-connector-api</module>
45     <module>sal-rest-connector</module>
46     <module>sal-netconf-connector</module>
47
48     <module>inventory-manager</module>
49     <module>statistics-manager</module>
50     <module>topology-manager</module>
51     <module>forwardingrules-manager</module>
52     <module>topology-lldp-discovery</module>
53
54     <!-- Compability Packages -->
55     <module>compatibility</module>
56
57     <!-- Clustering -->
58     <module>remoterpc-routingtable/implementation</module>
59     <module>sal-remoterpc-connector/implementation</module>
60     <!--module>clustered-data-store/implementation</module>
61          -->
62
63   </modules>
64
65   <build>
66     <pluginManagement>
67       <plugins>
68         <plugin>
69           <groupId>org.apache.felix</groupId>
70           <artifactId>maven-bundle-plugin</artifactId>
71           <version>${bundle.plugin.version}</version>
72           <extensions>true</extensions>
73           <!--executions> <execution> <id>bundle-manifest</id>
74                         <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution>
75                         </executions -->
76           <configuration>
77             <instructions>
78               <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
79             </instructions>
80             <manifestLocation>${project.basedir}/META-INF</manifestLocation>
81           </configuration>
82         </plugin>
83         <!--This plugin's configuration is used to store Eclipse
84                     m2e settings only. It has no influence on the Maven build itself. -->
85         <plugin>
86           <groupId>org.eclipse.m2e</groupId>
87           <artifactId>lifecycle-mapping</artifactId>
88           <version>1.0.0</version>
89           <configuration>
90             <lifecycleMappingMetadata>
91               <pluginExecutions>
92                 <pluginExecution>
93                   <pluginExecutionFilter>
94                     <groupId>net.alchim31.maven</groupId>
95                     <artifactId>scala-maven-plugin</artifactId>
96                     <versionRange>[0,)</versionRange>
97                     <goals>
98                       <goal>compile</goal>
99                       <goal>testCompile</goal>
100                     </goals>
101                   </pluginExecutionFilter>
102                   <action>
103                     <ignore></ignore>
104                   </action>
105                 </pluginExecution>
106                 <pluginExecution>
107                   <pluginExecutionFilter>
108                     <groupId>org.jacoco</groupId>
109                     <artifactId>jacoco-maven-plugin</artifactId>
110                     <versionRange>[0,)</versionRange>
111                     <goals>
112                       <goal>prepare-agent</goal>
113                     </goals>
114                   </pluginExecutionFilter>
115                   <action>
116                     <ignore></ignore>
117                   </action>
118                 </pluginExecution>
119               </pluginExecutions>
120             </lifecycleMappingMetadata>
121           </configuration>
122         </plugin>
123         <plugin>
124           <groupId>org.eclipse.xtend</groupId>
125           <artifactId>xtend-maven-plugin</artifactId>
126           <version>${xtend.version}</version>
127         </plugin>
128         <plugin>
129           <groupId>org.jacoco</groupId>
130           <artifactId>jacoco-maven-plugin</artifactId>
131           <version>${jacoco.version}</version>
132         </plugin>
133       </plugins>
134
135     </pluginManagement>
136     <plugins>
137       <plugin>
138         <groupId>org.apache.felix</groupId>
139         <artifactId>maven-bundle-plugin</artifactId>
140       </plugin>
141       <plugin>
142         <!-- FIXME: BUG-272: remove this configuration override -->
143         <groupId>org.apache.maven.plugins</groupId>
144         <artifactId>maven-checkstyle-plugin</artifactId>
145         <version>${checkstyle.version}</version>
146         <executions>
147           <execution>
148             <phase>none</phase>
149           </execution>
150         </executions>
151       </plugin>
152       <plugin>
153         <groupId>org.apache.maven.plugins</groupId>
154         <artifactId>maven-jar-plugin</artifactId>
155       </plugin>
156       <plugin>
157         <groupId>org.opendaylight.yangtools</groupId>
158         <artifactId>yang-maven-plugin</artifactId>
159         <version>${yangtools.version}</version>
160         <dependencies>
161           <dependency>
162             <groupId>org.opendaylight.controller</groupId>
163             <artifactId>yang-jmx-generator-plugin</artifactId>
164             <version>${config.version}</version>
165           </dependency>
166         </dependencies>
167       </plugin>
168     </plugins>
169   </build>
170   <reporting>
171     <plugins>
172       <plugin>
173         <groupId>org.codehaus.mojo</groupId>
174         <artifactId>findbugs-maven-plugin</artifactId>
175         <version>2.4.0</version>
176         <configuration>
177           <effort>Max</effort>
178           <threshold>Low</threshold>
179           <goal>site</goal>
180         </configuration>
181       </plugin>
182       <plugin>
183         <groupId>org.codehaus.mojo</groupId>
184         <artifactId>jdepend-maven-plugin</artifactId>
185         <version>2.0-beta-2</version>
186       </plugin>
187     </plugins>
188   </reporting>
189   <scm>
190     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
191     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
192     <tag>HEAD</tag>
193     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
194   </scm>
195
196   <profiles>
197     <profile>
198       <id>integrationtests</id>
199       <activation>
200         <activeByDefault>false</activeByDefault>
201       </activation>
202       <modules>
203         <module>sal-binding-it</module>
204         <module>sal-binding-dom-it</module>
205         <!--module>clustered-data-store/integrationtest</module -->
206         <!--module>zeromq-routingtable/integrationtest</module -->
207         <!--module>sal-remoterpc-connector/integrationtest</module -->
208         <!--module>test/sal-rest-connector-it</modulei -->
209       </modules>
210     </profile>
211   </profiles>
212 </project>