Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11
12     <parent>
13         <groupId>org.opendaylight.mdsal</groupId>
14         <artifactId>binding-parent</artifactId>
15         <version>0.14.0-SNAPSHOT</version>
16         <relativePath/>
17     </parent>
18
19     <modelVersion>4.0.0</modelVersion>
20     <groupId>org.opendaylight.openflowplugin</groupId>
21     <artifactId>openflowplugin-parent</artifactId>
22     <version>0.8.0-SNAPSHOT</version>
23     <packaging>pom</packaging>
24
25     <scm>
26         <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
27         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
28         <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
29         <tag>HEAD</tag>
30     </scm>
31
32     <properties>
33         <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
34         <exi.nagasena.version>0000.0002.0053.0</exi.nagasena.version>
35         <infrautils.version>1.5.0-SNAPSHOT</infrautils.version>
36         <serviceutils.version>0.3.0-SNAPSHOT</serviceutils.version>
37     </properties>
38
39     <dependencyManagement>
40         <dependencies>
41             <dependency>
42                 <groupId>org.opendaylight.openflowplugin</groupId>
43                 <artifactId>openflowplugin-artifacts</artifactId>
44                 <version>${project.version}</version>
45                 <scope>import</scope>
46                 <type>pom</type>
47             </dependency>
48             <dependency>
49                 <groupId>org.opendaylight.controller</groupId>
50                 <artifactId>mdsal-artifacts</artifactId>
51                 <version>1.9.0-SNAPSHOT</version>
52                 <type>pom</type>
53                 <scope>import</scope>
54             </dependency>
55             <!-- thirdparty -->
56             <dependency>
57                 <groupId>openexi</groupId>
58                 <artifactId>nagasena</artifactId>
59                 <version>${exi.nagasena.version}</version>
60             </dependency>
61             <dependency>
62                 <groupId>openexi</groupId>
63                 <artifactId>nagasena-rta</artifactId>
64                 <version>${exi.nagasena.version}</version>
65             </dependency>
66             <dependency>
67                 <groupId>net.sourceforge.argparse4j</groupId>
68                 <artifactId>argparse4j</artifactId>
69                 <version>0.7.0</version>
70             </dependency>
71             <dependency>
72                 <groupId>pl.pragmatists</groupId>
73                 <artifactId>JUnitParams</artifactId>
74                 <version>1.0.3</version>
75             </dependency>
76         </dependencies>
77     </dependencyManagement>
78
79     <build>
80         <plugins>
81             <plugin>
82                 <groupId>org.apache.maven.plugins</groupId>
83                 <artifactId>maven-checkstyle-plugin</artifactId>
84                 <configuration>
85                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
86                 </configuration>
87             </plugin>
88             <plugin>
89                 <groupId>org.codehaus.mojo</groupId>
90                 <artifactId>findbugs-maven-plugin</artifactId>
91                 <configuration>
92                     <failOnError>true</failOnError>
93                 </configuration>
94             </plugin>
95             <plugin>
96                 <groupId>org.codehaus.mojo</groupId>
97                 <artifactId>build-helper-maven-plugin</artifactId>
98             </plugin>
99         </plugins>
100         <pluginManagement>
101             <plugins>
102                 <plugin>
103                     <groupId>org.apache.felix</groupId>
104                     <artifactId>maven-bundle-plugin</artifactId>
105                     <extensions>true</extensions>
106                     <configuration>
107                         <instructions>
108                             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
109                         </instructions>
110                         <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
111                     </configuration>
112                 </plugin>
113                 <!-- Ignore/Execute plugin execution -->
114                 <plugin>
115                     <groupId>org.eclipse.m2e</groupId>
116                     <artifactId>lifecycle-mapping</artifactId>
117                     <version>1.0.0</version>
118                     <configuration>
119                         <lifecycleMappingMetadata>
120                             <pluginExecutions>
121                                 <pluginExecution>
122                                     <pluginExecutionFilter>
123                                         <groupId>org.codehaus.mojo</groupId>
124                                         <artifactId>properties-maven-plugin</artifactId>
125                                         <versionRange>[0.0,)</versionRange>
126                                         <goals>
127                                             <goal>set-system-properties</goal>
128                                         </goals>
129                                     </pluginExecutionFilter>
130                                     <action>
131                                         <ignore/>
132                                     </action>
133                                 </pluginExecution>
134                                 <pluginExecution>
135                                     <pluginExecutionFilter>
136                                         <groupId>org.jacoco</groupId>
137                                         <artifactId>jacoco-maven-plugin</artifactId>
138                                         <versionRange>[0.0,)</versionRange>
139                                         <goals>
140                                             <goal>prepare-agent</goal>
141                                             <goal>pre-test</goal>
142                                             <goal>post-test</goal>
143                                         </goals>
144                                     </pluginExecutionFilter>
145                                     <action>
146                                         <ignore/>
147                                     </action>
148                                 </pluginExecution>
149                                 <pluginExecution>
150                                     <pluginExecutionFilter>
151                                         <groupId>org.ops4j.pax.exam</groupId>
152                                         <artifactId>maven-paxexam-plugin</artifactId>
153                                         <versionRange>[1.2.4,)</versionRange>
154                                         <goals>
155                                             <goal>generate-depends-file</goal>
156                                         </goals>
157                                     </pluginExecutionFilter>
158                                     <action>
159                                         <execute>
160                                             <runOnIncremental>false</runOnIncremental>
161                                         </execute>
162                                     </action>
163                                 </pluginExecution>
164                                 <pluginExecution>
165                                     <pluginExecutionFilter>
166                                         <groupId>org.codehaus.groovy.maven</groupId>
167                                         <artifactId>gmaven-plugin</artifactId>
168                                         <versionRange>1.0</versionRange>
169                                         <goals>
170                                             <goal>execute</goal>
171                                         </goals>
172                                     </pluginExecutionFilter>
173                                     <action>
174                                         <ignore/>
175                                     </action>
176                                 </pluginExecution>
177                                 <pluginExecution>
178                                     <pluginExecutionFilter>
179                                         <groupId>org.apache.maven.plugins</groupId>
180                                         <artifactId>maven-enforcer-plugin</artifactId>
181                                         <versionRange>${enforcer.version}</versionRange>
182                                         <goals>
183                                             <goal>enforce</goal>
184                                         </goals>
185                                     </pluginExecutionFilter>
186                                     <action>
187                                         <ignore/>
188                                     </action>
189                                 </pluginExecution>
190                             </pluginExecutions>
191                         </lifecycleMappingMetadata>
192                     </configuration>
193                 </plugin>
194             </plugins>
195         </pluginManagement>
196     </build>
197
198     <profiles>
199         <profile>
200             <id>findbugsReport</id>
201             <reporting>
202                 <plugins>
203                     <plugin>
204                         <groupId>org.apache.maven.plugins</groupId>
205                         <artifactId>maven-project-info-reports-plugin</artifactId>
206                         <version>2.7</version>
207                         <configuration>
208                             <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
209                             <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
210                         </configuration>
211                         <reportSets>
212                             <reportSet>
213                                 <reports>
214                                     <report>index</report>
215                                     <report>project-team</report>
216                                     <report>license</report>
217                                     <report>mailing-list</report>
218                                     <report>plugin-management</report>
219                                     <report>cim</report>
220                                     <report>issue-tracking</report>
221                                     <report>scm</report>
222                                     <report>summary</report>
223                                 </reports>
224                             </reportSet>
225                         </reportSets>
226                     </plugin>
227                     <plugin>
228                         <groupId>org.codehaus.mojo</groupId>
229                         <artifactId>findbugs-maven-plugin</artifactId>
230                         <version>2.5.2</version>
231                     </plugin>
232                     <plugin>
233                         <groupId>org.apache.maven.plugins</groupId>
234                         <artifactId>maven-pmd-plugin</artifactId>
235                         <version>3.0.1</version>
236                     </plugin>
237                     <plugin>
238                         <groupId>org.apache.maven.plugins</groupId>
239                         <artifactId>maven-jxr-plugin</artifactId>
240                         <version>2.3</version>
241                     </plugin>
242                 </plugins>
243             </reporting>
244         </profile>
245     </profiles>
246 </project>