Bump versions by 0.1.0 for next dev cycle
[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   <modules>
34     <module>alto-core</module>
35     <module>alto-basic</module>
36     <module>alto-release-features</module>
37   </modules>
38
39   <build>
40     <pluginManagement>
41       <plugins>
42         <plugin> <!-- global checkstyle -->
43           <groupId>org.apache.maven.plugins</groupId>
44           <artifactId>maven-checkstyle-plugin</artifactId>
45           <version>${checkstyle.version}</version>
46
47           <executions>
48             <execution>
49               <phase>process-sources</phase>
50               <goals>
51                 <goal>check</goal>
52               </goals>
53             </execution>
54           </executions>
55
56           <configuration>
57             <failsOnError>true</failsOnError>
58             <configLocation>controller/checkstyle.xml</configLocation>
59             <consoleOutput>true</consoleOutput>
60             <includeTestSourceDirectory>true</includeTestSourceDirectory>
61             <sourceDirectory>${project.basedir}</sourceDirectory>
62             <excludes>**\/target\/,**\/bin\/,**\/third-party\/,**\/yang\/gen\/,**\/yang-gen-sal\/</excludes>
63           </configuration>
64
65           <dependencies>
66             <dependency>
67               <groupId>org.opendaylight.controller</groupId>
68               <artifactId>checkstyle</artifactId>
69               <version>0.3.0-SNAPSHOT</version>
70             </dependency>
71           </dependencies>
72         </plugin>
73       </plugins>
74     </pluginManagement>
75   </build>
76 </project>