MD-SAL RuntimeDataProvider for Forwarding Rules
[controller.git] / opendaylight / md-sal / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     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     <groupId>org.opendaylight.controller</groupId>
5     <artifactId>sal-parent</artifactId>
6     <version>1.0-SNAPSHOT</version>
7     <packaging>pom</packaging>
8     <scm>
9         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
10         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
11         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
12     </scm>
13
14     <modules>
15         <!--  Common APIs & Implementation -->
16         <module>sal-common</module>
17         <module>sal-common-api</module>
18         <module>sal-common-impl</module>
19         <module>sal-common-util</module>
20
21         <!-- Binding Independent -->
22         <module>sal-dom-api</module>
23         <module>sal-dom-broker</module>
24         <module>sal-dom-spi</module>
25
26         <!-- Binding Aware -->
27         <module>sal-binding-api</module>
28         <module>sal-binding-broker</module>
29
30         <!-- Samples -->
31         <module>samples</module>
32
33         <!-- Base Models -->
34         <module>model</module>
35
36         <!-- Compability Packages -->
37         <module>sal-compability</module>
38
39         <!-- Connectors -->
40         <module>sal-connector-api</module>
41         <module>sal-rest-connector</module>
42         <module>flow-management-compatibility</module>
43     </modules>
44
45     <properties>
46         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
47         <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
48         <!-- Java Versions -->
49         <maven.compiler.source>1.7</maven.compiler.source>
50         <maven.compiler.target>1.7</maven.compiler.target>
51
52         <!-- Plugin Versions -->
53         <bundle.plugin.version>2.4.0</bundle.plugin.version>
54         <releaseplugin.version>2.3.2</releaseplugin.version>
55
56         <!-- Dependency Versions -->
57         <slf4j.version>1.7.2</slf4j.version>
58         <yang.version>0.5.9-SNAPSHOT</yang.version>
59         <yang.binding.version>0.6.0-SNAPSHOT</yang.binding.version>
60         <yang.codegen.version>0.6.0-SNAPSHOT</yang.codegen.version>
61         <guava.version>14.0.1</guava.version>
62         <osgi.core.version>5.0.0</osgi.core.version>
63         <junit.version>4.8.1</junit.version>
64         <xtend.version>2.4.3</xtend.version>
65     </properties>
66
67     <pluginRepositories>
68         <pluginRepository>
69             <id>central</id>
70             <name>maven repo1</name>
71             <url>http://repo1.maven.org/maven2</url>
72             <snapshots>
73                 <enabled>false</enabled>
74             </snapshots>
75             <releases>
76                 <enabled>true</enabled>
77             </releases>
78         </pluginRepository>
79         <pluginRepository>
80             <id>opendaylight-snapshot</id>
81             <name>opendaylight-snapshot</name>
82             <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
83         </pluginRepository>
84         <pluginRepository>
85             <id>opendaylight.release</id>
86             <name>opendaylight.release</name>
87             <url>${nexusproxy}/repositories/opendaylight.release/</url>
88         </pluginRepository>
89     </pluginRepositories>
90
91
92     <repositories>
93         <repository>
94             <id>opendaylight-release</id>
95             <name>opendaylight-release</name>
96             <url>${nexusproxy}/repositories/opendaylight.release/</url>
97         </repository>
98         <!-- OpenDayLight Snapshot artifact -->
99         <repository>
100             <id>opendaylight-snapshot</id>
101             <name>opendaylight-snapshot</name>
102             <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
103         </repository>
104         <repository>
105             <id>thirdparty</id>
106             <name>thirdparty</name>
107             <url>${nexusproxy}/repositories/thirdparty/</url>
108         </repository>
109         <repository>
110             <id>central</id>
111             <name>central</name>
112             <url>http://repo1.maven.org/maven2</url>
113             <snapshots>
114                 <enabled>false</enabled>
115             </snapshots>
116             <releases>
117                 <enabled>true</enabled>
118             </releases>
119         </repository>
120     </repositories>
121
122     <distributionManagement>
123         <!-- OpenDayLight Released artifact -->
124         <repository>
125             <id>opendaylight-release</id>
126             <url>${nexusproxy}/repositories/opendaylight.release/</url>
127         </repository>
128         <!-- OpenDayLight Snapshot artifact -->
129         <snapshotRepository>
130             <id>opendaylight-snapshot</id>
131             <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
132         </snapshotRepository>
133         <!-- Site deployment -->
134         <site>
135             <id>website</id>
136             <url>${sitedeploy}</url>
137         </site>
138     </distributionManagement>
139
140
141     <dependencyManagement>
142         <dependencies>
143
144
145
146
147             <!-- YANG Tools Dependencies -->
148             <dependency>
149                 <groupId>org.opendaylight.yangtools</groupId>
150                 <artifactId>yang-binding</artifactId>
151                 <version>${yang.binding.version}</version>
152             </dependency>
153             <dependency>
154                 <groupId>org.opendaylight.yangtools</groupId>
155                 <artifactId>yang-common</artifactId>
156                 <version>${yang.version}</version>
157             </dependency>
158             <dependency>
159                 <groupId>org.opendaylight.yangtools</groupId>
160                 <artifactId>yang-data-api</artifactId>
161                 <version>${yang.version}</version>
162             </dependency>
163             <dependency>
164                 <groupId>org.opendaylight.yangtools</groupId>
165                 <artifactId>yang-model-api</artifactId>
166                 <version>${yang.version}</version>
167             </dependency>
168             <dependency>
169                 <groupId>org.opendaylight.yangtools</groupId>
170                 <artifactId>yang-data-util</artifactId>
171                 <version>${yang.version}</version>
172             </dependency>
173             <!-- SAL Dependencies -->
174             <dependency>
175                 <groupId>${project.groupId}</groupId>
176                 <artifactId>sal-connector-api</artifactId>
177                 <version>${project.version}</version>
178             </dependency>
179
180             <!-- Supporting Libraries -->
181             <dependency>
182                 <groupId>org.slf4j</groupId>
183                 <artifactId>slf4j-api</artifactId>
184                 <version>${slf4j.version}</version>
185             </dependency>
186             <dependency>
187                 <groupId>com.google.guava</groupId>
188                 <artifactId>guava</artifactId>
189                 <version>${guava.version}</version>
190             </dependency>
191             <dependency>
192                 <groupId>org.eclipse.xtend</groupId>
193                 <artifactId>org.eclipse.xtend.lib</artifactId>
194                 <version>${xtend.version}</version>
195             </dependency>
196
197             <!-- Testing Dependencies -->
198             <dependency>
199                 <groupId>junit</groupId>
200                 <artifactId>junit</artifactId>
201                 <version>${junit.version}</version>
202                 <scope>test</scope>
203             </dependency>
204             <dependency>
205                 <groupId>org.mockito</groupId>
206                 <artifactId>mockito-all</artifactId>
207                 <version>1.9.5</version>
208                 <scope>test</scope>
209             </dependency>
210         </dependencies>
211     </dependencyManagement>
212     <build>
213         <pluginManagement>
214             <plugins>
215                 <plugin>
216                     <groupId>org.apache.maven.plugins</groupId>
217                     <artifactId>maven-release-plugin</artifactId>
218                     <version>${releaseplugin.version}</version>
219                 </plugin>
220                 <plugin>
221                     <groupId>org.apache.felix</groupId>
222                     <artifactId>maven-bundle-plugin</artifactId>
223                     <version>${bundle.plugin.version}</version>
224                     <extensions>true</extensions>
225                     <!--executions>
226                         <execution>
227                             <id>bundle-manifest</id>
228                             <phase>process-classes</phase>
229                             <goals>
230                                 <goal>manifest</goal>
231                             </goals>
232                         </execution>
233                     </executions-->
234                     <configuration>
235                         <instructions>
236                             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
237                         </instructions>
238                         <manifestLocation>${project.basedir}/META-INF</manifestLocation>
239                     </configuration>
240                 </plugin>
241                 <plugin>
242                     <groupId>org.eclipse.xtend</groupId>
243                     <artifactId>xtend-maven-plugin</artifactId>
244                     <version>${xtend.version}</version>
245                     <executions>
246                         <execution>
247                             <goals>
248                                 <goal>compile</goal>
249                             </goals>
250                             <configuration>
251                                 <outputDirectory>${basedir}/src/main/xtend-gen</outputDirectory>
252                             </configuration>
253                         </execution>
254                     </executions>
255                 </plugin>
256                 <plugin>
257                     <artifactId>maven-clean-plugin</artifactId>
258                     <configuration>
259                         <filesets>
260                             <fileset>
261                                 <directory>${basedir}/src/main/xtend-gen</directory>
262                                 <includes>
263                                     <include>**</include>
264                                 </includes>
265                             </fileset>
266                         </filesets>
267                     </configuration>
268                 </plugin>
269             </plugins>
270         </pluginManagement>
271         <plugins>
272             <plugin>
273                 <groupId>org.apache.felix</groupId>
274                 <artifactId>maven-bundle-plugin</artifactId>
275             </plugin>
276             <plugin>
277                 <groupId>org.apache.maven.plugins</groupId>
278                 <artifactId>maven-jar-plugin</artifactId>
279             </plugin>
280             <plugin>
281                 <groupId>org.apache.maven.plugins</groupId>
282                 <artifactId>maven-javadoc-plugin</artifactId>
283                 <version>2.8.1</version>
284                 <configuration>
285                     <stylesheet>maven</stylesheet>
286                     <failOnError>false</failOnError>
287                 </configuration>
288                 <executions>
289                     <execution>
290                         <goals>
291                             <goal>aggregate</goal>
292                         </goals>
293                         <phase>site</phase>
294                     </execution>
295                 </executions>
296             </plugin>
297         </plugins>
298     </build>
299     <reporting>
300         <plugins>
301             <plugin>
302                 <groupId>org.codehaus.mojo</groupId>
303                 <artifactId>findbugs-maven-plugin</artifactId>
304                 <version>2.4.0</version>
305                 <configuration>
306                     <effort>Max</effort>
307                     <threshold>Low</threshold>
308                     <goal>site</goal>
309                 </configuration>
310             </plugin>
311             <plugin>
312                 <groupId>org.codehaus.mojo</groupId>
313                 <artifactId>jdepend-maven-plugin</artifactId>
314                 <version>2.0-beta-2</version>
315             </plugin>
316         </plugins>
317     </reporting>
318 </project>