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