Merge "Fixed typo in SnapshotBackedWriteTransaction class"
[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     <!-- Documentation -->
63     <module>sal-rest-docgen</module>
64   </modules>
65
66   <build>
67     <pluginManagement>
68       <plugins>
69         <plugin>
70           <groupId>org.apache.felix</groupId>
71           <artifactId>maven-bundle-plugin</artifactId>
72           <version>${bundle.plugin.version}</version>
73           <extensions>true</extensions>
74           <!--executions> <execution> <id>bundle-manifest</id>
75                         <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution>
76                         </executions -->
77           <configuration>
78             <instructions>
79               <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
80             </instructions>
81             <manifestLocation>${project.basedir}/META-INF</manifestLocation>
82           </configuration>
83         </plugin>
84         <!--This plugin's configuration is used to store Eclipse
85                     m2e settings only. It has no influence on the Maven build itself. -->
86         <plugin>
87           <groupId>org.eclipse.m2e</groupId>
88           <artifactId>lifecycle-mapping</artifactId>
89           <version>1.0.0</version>
90           <configuration>
91             <lifecycleMappingMetadata>
92               <pluginExecutions>
93                 <pluginExecution>
94                   <pluginExecutionFilter>
95                     <groupId>net.alchim31.maven</groupId>
96                     <artifactId>scala-maven-plugin</artifactId>
97                     <versionRange>[0,)</versionRange>
98                     <goals>
99                       <goal>compile</goal>
100                       <goal>testCompile</goal>
101                     </goals>
102                   </pluginExecutionFilter>
103                   <action>
104                     <ignore></ignore>
105                   </action>
106                 </pluginExecution>
107                 <pluginExecution>
108                   <pluginExecutionFilter>
109                     <groupId>org.jacoco</groupId>
110                     <artifactId>jacoco-maven-plugin</artifactId>
111                     <versionRange>[0,)</versionRange>
112                     <goals>
113                       <goal>prepare-agent</goal>
114                     </goals>
115                   </pluginExecutionFilter>
116                   <action>
117                     <ignore></ignore>
118                   </action>
119                 </pluginExecution>
120               </pluginExecutions>
121             </lifecycleMappingMetadata>
122           </configuration>
123         </plugin>
124         <plugin>
125           <groupId>org.eclipse.xtend</groupId>
126           <artifactId>xtend-maven-plugin</artifactId>
127           <version>${xtend.version}</version>
128         </plugin>
129         <plugin>
130           <groupId>org.jacoco</groupId>
131           <artifactId>jacoco-maven-plugin</artifactId>
132           <version>${jacoco.version}</version>
133         </plugin>
134       </plugins>
135
136     </pluginManagement>
137     <plugins>
138       <plugin>
139         <groupId>org.apache.felix</groupId>
140         <artifactId>maven-bundle-plugin</artifactId>
141       </plugin>
142       <plugin>
143         <!-- FIXME: BUG-272: remove this configuration override -->
144         <groupId>org.apache.maven.plugins</groupId>
145         <artifactId>maven-checkstyle-plugin</artifactId>
146         <version>${checkstyle.version}</version>
147         <executions>
148           <execution>
149             <phase>none</phase>
150           </execution>
151         </executions>
152       </plugin>
153       <plugin>
154         <groupId>org.apache.maven.plugins</groupId>
155         <artifactId>maven-jar-plugin</artifactId>
156       </plugin>
157       <plugin>
158         <groupId>org.opendaylight.yangtools</groupId>
159         <artifactId>yang-maven-plugin</artifactId>
160         <version>${yangtools.version}</version>
161         <dependencies>
162           <dependency>
163             <groupId>org.opendaylight.controller</groupId>
164             <artifactId>yang-jmx-generator-plugin</artifactId>
165             <version>${config.version}</version>
166           </dependency>
167         </dependencies>
168       </plugin>
169     </plugins>
170   </build>
171   <reporting>
172     <plugins>
173       <plugin>
174         <groupId>org.codehaus.mojo</groupId>
175         <artifactId>findbugs-maven-plugin</artifactId>
176         <version>2.4.0</version>
177         <configuration>
178           <effort>Max</effort>
179           <threshold>Low</threshold>
180           <goal>site</goal>
181         </configuration>
182       </plugin>
183       <plugin>
184         <groupId>org.codehaus.mojo</groupId>
185         <artifactId>jdepend-maven-plugin</artifactId>
186         <version>2.0-beta-2</version>
187       </plugin>
188     </plugins>
189   </reporting>
190   <scm>
191     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
192     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
193     <tag>HEAD</tag>
194     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
195   </scm>
196
197   <profiles>
198     <profile>
199       <id>integrationtests</id>
200       <activation>
201         <activeByDefault>false</activeByDefault>
202       </activation>
203       <modules>
204         <module>sal-binding-it</module>
205         <module>sal-binding-dom-it</module>
206         <!--module>clustered-data-store/integrationtest</module -->
207         <!--module>zeromq-routingtable/integrationtest</module -->
208         <!--module>sal-remoterpc-connector/integrationtest</module -->
209         <!--module>test/sal-rest-connector-it</modulei -->
210       </modules>
211     </profile>
212   </profiles>
213 </project>