Merge "Revert "add endpointcost-northbound-route""
[alto.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015 Copyright (c) Yale University and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 --><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">
8   <modelVersion>4.0.0</modelVersion>
9   <prerequisites>
10     <maven>3.0</maven>
11   </prerequisites>
12
13   <parent>
14     <groupId>org.opendaylight.odlparent</groupId>
15     <artifactId>odlparent</artifactId>
16     <version>1.7.0-SNAPSHOT</version>
17     <relativePath/>
18   </parent>
19
20   <groupId>org.opendaylight.alto</groupId>
21   <artifactId>alto-parent</artifactId>
22   <version>0.3.0-SNAPSHOT</version>
23   <name>alto</name> <!-- Used by Sonar to set project name -->
24   <packaging>pom</packaging>
25
26   <scm>
27     <connection>scm:git:ssh://git.opendaylight.org:29418/alto.git</connection>
28     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/alto.git</developerConnection>
29     <url>https://wiki.opendaylight.org/view/ALTO:Main</url>
30     <tag>HEAD</tag>
31   </scm>
32
33   <properties>
34     <mdsal.model.version>0.9.0-SNAPSHOT</mdsal.model.version>
35   </properties>
36
37   <modules>
38     <module>alto-core</module>
39     <module>alto-basic</module>
40     <module>alto-release-features</module>
41   </modules>
42
43   <build>
44     <pluginManagement>
45       <plugins>
46         <plugin> <!-- global checkstyle -->
47           <groupId>org.apache.maven.plugins</groupId>
48           <artifactId>maven-checkstyle-plugin</artifactId>
49           <version>${checkstyle.version}</version>
50
51           <executions>
52             <execution>
53               <phase>process-sources</phase>
54               <goals>
55                 <goal>check</goal>
56               </goals>
57             </execution>
58           </executions>
59
60           <configuration>
61             <failsOnError>true</failsOnError>
62             <configLocation>controller/checkstyle.xml</configLocation>
63             <consoleOutput>true</consoleOutput>
64             <includeTestSourceDirectory>true</includeTestSourceDirectory>
65             <sourceDirectory>${project.basedir}</sourceDirectory>
66             <excludes>**\/target\/,**\/bin\/,**\/third-party\/,**\/yang\/gen\/,**\/yang-gen-sal\/</excludes>
67           </configuration>
68
69           <dependencies>
70             <dependency>
71               <groupId>org.opendaylight.controller</groupId>
72               <artifactId>checkstyle</artifactId>
73               <version>0.3.0-SNAPSHOT</version>
74             </dependency>
75           </dependencies>
76         </plugin>
77       </plugins>
78     </pluginManagement>
79   </build>
80 </project>