Bump versions by x.y.(z+1)
[neutron.git] / parent / 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   <prerequisites>
5     <maven>3.1.1</maven>
6   </prerequisites>
7
8   <parent>
9     <groupId>org.opendaylight.odlparent</groupId>
10     <artifactId>odlparent</artifactId>
11     <version>1.7.5-SNAPSHOT</version>
12     <relativePath/>
13   </parent>
14
15   <groupId>org.opendaylight.neutron</groupId>
16   <artifactId>project-neutron-parent</artifactId>
17   <version>0.7.5-SNAPSHOT</version>
18   <packaging>pom</packaging>
19
20   <properties>
21     <aaa.version>0.3.5-SNAPSHOT</aaa.version>
22     <ietf-yang-types.version>2013.07.15.9.5-SNAPSHOT</ietf-yang-types.version>
23     <ietf-inet-types.version>1.1.5-SNAPSHOT</ietf-inet-types.version>
24     <salGeneratorPath>src/main/yang-gen-sal</salGeneratorPath>
25     <mdsal.model.version>0.9.5-SNAPSHOT</mdsal.model.version>
26     <yangtools.version>1.0.5-SNAPSHOT</yangtools.version>
27     <yang-ext.version>2013.09.07.9.5-SNAPSHOT</yang-ext.version>
28     <sonar.jacoco.reportPath>target/jacoco.exec</sonar.jacoco.reportPath>
29     <sonar.jacoco.itReportPath>../target/jacoco-it.exec</sonar.jacoco.itReportPath>
30     <checkstyle.location>${project.build.resources[0].directory}</checkstyle.location>
31   </properties>
32   <scm>
33     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
34     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
35     <tag>HEAD</tag>
36   </scm>
37
38   <dependencyManagement>
39     <dependencies>
40       <dependency>
41         <groupId>org.opendaylight.mdsal</groupId>
42         <artifactId>yang-binding</artifactId>
43         <version>${mdsal.model.version}</version>
44       </dependency>
45       <dependency>
46         <groupId>org.opendaylight.yangtools</groupId>
47         <artifactId>yang-common</artifactId>
48         <version>${yangtools.version}</version>
49       </dependency>
50       <dependency>
51         <groupId>org.opendaylight.mdsal.model</groupId>
52         <artifactId>ietf-inet-types-2013-07-15</artifactId>
53         <version>${ietf-inet-types.version}</version>
54       </dependency>
55       <dependency>
56         <groupId>org.opendaylight.mdsal.model</groupId>
57         <artifactId>ietf-yang-types-20130715</artifactId>
58         <version>${ietf-yang-types.version}</version>
59       </dependency>
60       <dependency>
61         <groupId>org.opendaylight.mdsal.model</groupId>
62         <artifactId>yang-ext</artifactId>
63         <version>${yang-ext.version}</version>
64       </dependency>
65     </dependencies>
66   </dependencyManagement>
67
68   <build>
69     <pluginManagement>
70       <plugins>
71         <plugin>
72           <artifactId>maven-checkstyle-plugin</artifactId>
73           <configuration>
74             <excludes>org/opendaylight/yang/gen/**,**/yang/**</excludes>
75             <consoleOutput>true</consoleOutput>
76           </configuration>
77           <executions>
78             <execution>
79               <goals>
80                 <goal>check</goal>
81               </goals>
82               <phase>process-sources</phase>
83             </execution>
84           </executions>
85         </plugin>
86         <plugin>
87           <groupId>org.apache.maven.plugins</groupId>
88           <artifactId>maven-source-plugin</artifactId>
89           <version>2.2.1</version>
90         </plugin>
91         <plugin>
92           <groupId>org.apache.maven.plugins</groupId>
93           <artifactId>maven-jar-plugin</artifactId>
94           <version>2.4</version>
95         </plugin>
96         <plugin>
97           <groupId>org.opendaylight.yangtools</groupId>
98           <artifactId>yang-maven-plugin</artifactId>
99           <version>${yangtools.version}</version>
100         </plugin>
101         <plugin>
102           <groupId>org.apache.felix</groupId>
103           <artifactId>maven-bundle-plugin</artifactId>
104           <version>${maven.bundle.version}</version>
105         </plugin>
106 <!--        <plugin>
107           <groupId>org.apache.maven.plugins</groupId>
108           <artifactId>maven-surefire-plugin</artifactId>
109           <version>${maven.surefire.version}</version>
110           <configuration>
111             <argLine>${surefireArgLine}</argLine>
112             <skipTests>${skip.unit.tests}</skipTests>
113             <excludes>
114                <exclude>**/IT*.java</exclude>
115             </excludes>
116           </configuration>
117         </plugin> -->
118       </plugins>
119     </pluginManagement>
120     <plugins>
121       <plugin>
122         <groupId>org.apache.felix</groupId>
123         <artifactId>maven-bundle-plugin</artifactId>
124         <extensions>true</extensions>
125         <configuration>
126           <instructions>
127             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
128           </instructions>
129           <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
130         </configuration>
131       </plugin>
132       <plugin>
133         <groupId>org.apache.maven.plugins</groupId>
134         <artifactId>maven-compiler-plugin</artifactId>
135         <inherited>true</inherited>
136         <configuration>
137           <compilerArgs>
138             <arg>-Xlint:unchecked</arg>
139             <arg>-Xlint:deprecation</arg>
140           </compilerArgs>
141         </configuration>
142       </plugin>
143       <plugin>
144         <artifactId>maven-source-plugin</artifactId>
145         <executions>
146           <execution>
147             <id>attach-sources</id>
148             <phase>deploy</phase>
149             <goals>
150               <goal>jar-no-fork</goal>
151             </goals>
152           </execution>
153         </executions>
154       </plugin>
155     </plugins>
156   </build>
157
158   <!--
159       Maven Site Configuration
160
161       The following configuration is necessary for maven-site-plugin to
162       correctly identify the correct deployment path for OpenDaylight Maven
163       sites.
164   -->
165   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
166
167   <distributionManagement>
168     <site>
169       <id>opendaylight-site</id>
170       <url>${nexus.site.url}/${project.artifactId}/</url>
171     </site>
172   </distributionManagement>
173 </project>