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