Bump MRI upstreams
[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>9.0.1</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.14.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     <dependencyManagement>
33         <dependencies>
34             <dependency>
35                 <groupId>org.opendaylight.openflowplugin</groupId>
36                 <artifactId>openflowplugin-artifacts</artifactId>
37                 <version>${project.version}</version>
38                 <scope>import</scope>
39                 <type>pom</type>
40             </dependency>
41             <dependency>
42                 <groupId>org.opendaylight.controller</groupId>
43                 <artifactId>controller-artifacts</artifactId>
44                 <version>5.0.1</version>
45                 <type>pom</type>
46                 <scope>import</scope>
47             </dependency>
48             <dependency>
49                 <groupId>org.opendaylight.infrautils</groupId>
50                 <artifactId>infrautils-artifacts</artifactId>
51                 <version>3.0.0</version>
52                 <type>pom</type>
53                 <scope>import</scope>
54             </dependency>
55             <dependency>
56                 <groupId>org.opendaylight.serviceutils</groupId>
57                 <artifactId>serviceutils-artifacts</artifactId>
58                 <version>0.9.0-SNAPSHOT</version>
59                 <type>pom</type>
60                 <scope>import</scope>
61             </dependency>
62             <!-- thirdparty -->
63             <dependency>
64                 <groupId>net.sourceforge.argparse4j</groupId>
65                 <artifactId>argparse4j</artifactId>
66                 <version>0.7.0</version>
67             </dependency>
68             <dependency>
69                 <groupId>pl.pragmatists</groupId>
70                 <artifactId>JUnitParams</artifactId>
71                 <version>1.0.3</version>
72             </dependency>
73         </dependencies>
74     </dependencyManagement>
75
76     <build>
77         <plugins>
78             <plugin>
79                 <groupId>org.apache.maven.plugins</groupId>
80                 <artifactId>maven-checkstyle-plugin</artifactId>
81                 <configuration>
82                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
83                 </configuration>
84             </plugin>
85             <plugin>
86                 <groupId>com.github.spotbugs</groupId>
87                 <artifactId>spotbugs-maven-plugin</artifactId>
88                 <configuration>
89                     <failOnError>true</failOnError>
90                 </configuration>
91             </plugin>
92             <plugin>
93                 <groupId>org.codehaus.mojo</groupId>
94                 <artifactId>build-helper-maven-plugin</artifactId>
95             </plugin>
96         </plugins>
97         <pluginManagement>
98             <plugins>
99                 <plugin>
100                     <groupId>org.apache.felix</groupId>
101                     <artifactId>maven-bundle-plugin</artifactId>
102                     <extensions>true</extensions>
103                     <configuration>
104                         <instructions>
105                             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
106                         </instructions>
107                         <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
108                     </configuration>
109                 </plugin>
110                 <!-- Ignore/Execute plugin execution -->
111                 <plugin>
112                     <groupId>org.eclipse.m2e</groupId>
113                     <artifactId>lifecycle-mapping</artifactId>
114                     <version>1.0.0</version>
115                     <configuration>
116                         <lifecycleMappingMetadata>
117                             <pluginExecutions>
118                                 <pluginExecution>
119                                     <pluginExecutionFilter>
120                                         <groupId>org.codehaus.mojo</groupId>
121                                         <artifactId>properties-maven-plugin</artifactId>
122                                         <versionRange>[0.0,)</versionRange>
123                                         <goals>
124                                             <goal>set-system-properties</goal>
125                                         </goals>
126                                     </pluginExecutionFilter>
127                                     <action>
128                                         <ignore/>
129                                     </action>
130                                 </pluginExecution>
131                                 <pluginExecution>
132                                     <pluginExecutionFilter>
133                                         <groupId>org.jacoco</groupId>
134                                         <artifactId>jacoco-maven-plugin</artifactId>
135                                         <versionRange>[0.0,)</versionRange>
136                                         <goals>
137                                             <goal>prepare-agent</goal>
138                                             <goal>pre-test</goal>
139                                             <goal>post-test</goal>
140                                         </goals>
141                                     </pluginExecutionFilter>
142                                     <action>
143                                         <ignore/>
144                                     </action>
145                                 </pluginExecution>
146                                 <pluginExecution>
147                                     <pluginExecutionFilter>
148                                         <groupId>org.ops4j.pax.exam</groupId>
149                                         <artifactId>maven-paxexam-plugin</artifactId>
150                                         <versionRange>[1.2.4,)</versionRange>
151                                         <goals>
152                                             <goal>generate-depends-file</goal>
153                                         </goals>
154                                     </pluginExecutionFilter>
155                                     <action>
156                                         <execute>
157                                             <runOnIncremental>false</runOnIncremental>
158                                         </execute>
159                                     </action>
160                                 </pluginExecution>
161                                 <pluginExecution>
162                                     <pluginExecutionFilter>
163                                         <groupId>org.codehaus.groovy.maven</groupId>
164                                         <artifactId>gmaven-plugin</artifactId>
165                                         <versionRange>1.0</versionRange>
166                                         <goals>
167                                             <goal>execute</goal>
168                                         </goals>
169                                     </pluginExecutionFilter>
170                                     <action>
171                                         <ignore/>
172                                     </action>
173                                 </pluginExecution>
174                                 <pluginExecution>
175                                     <pluginExecutionFilter>
176                                         <groupId>org.apache.maven.plugins</groupId>
177                                         <artifactId>maven-enforcer-plugin</artifactId>
178                                         <versionRange>${enforcer.version}</versionRange>
179                                         <goals>
180                                             <goal>enforce</goal>
181                                         </goals>
182                                     </pluginExecutionFilter>
183                                     <action>
184                                         <ignore/>
185                                     </action>
186                                 </pluginExecution>
187                             </pluginExecutions>
188                         </lifecycleMappingMetadata>
189                     </configuration>
190                 </plugin>
191             </plugins>
192         </pluginManagement>
193     </build>
194
195     <profiles>
196         <profile>
197             <id>findbugsReport</id>
198             <reporting>
199                 <plugins>
200                     <plugin>
201                         <groupId>org.apache.maven.plugins</groupId>
202                         <artifactId>maven-project-info-reports-plugin</artifactId>
203                         <version>2.7</version>
204                         <configuration>
205                             <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
206                             <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
207                         </configuration>
208                         <reportSets>
209                             <reportSet>
210                                 <reports>
211                                     <report>index</report>
212                                     <report>project-team</report>
213                                     <report>license</report>
214                                     <report>mailing-list</report>
215                                     <report>plugin-management</report>
216                                     <report>cim</report>
217                                     <report>issue-tracking</report>
218                                     <report>scm</report>
219                                     <report>summary</report>
220                                 </reports>
221                             </reportSet>
222                         </reportSets>
223                     </plugin>
224                     <plugin>
225                         <groupId>org.codehaus.mojo</groupId>
226                         <artifactId>findbugs-maven-plugin</artifactId>
227                         <version>2.5.2</version>
228                     </plugin>
229                     <plugin>
230                         <groupId>org.apache.maven.plugins</groupId>
231                         <artifactId>maven-pmd-plugin</artifactId>
232                         <version>3.0.5</version>
233                     </plugin>
234                     <plugin>
235                         <groupId>org.apache.maven.plugins</groupId>
236                         <artifactId>maven-jxr-plugin</artifactId>
237                         <version>2.3</version>
238                     </plugin>
239                 </plugins>
240             </reporting>
241         </profile>
242     </profiles>
243 </project>