sanitize Boolean autoboxing NPE
[openflowplugin.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4     xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5     <modelVersion>4.0.0</modelVersion>
6     <prerequisites>
7         <maven>3.0</maven>
8     </prerequisites>
9     <groupId>org.opendaylight.openflowplugin</groupId>
10     <artifactId>openflowplugin-parent</artifactId>
11     <version>0.0.1-SNAPSHOT</version>
12     <packaging>pom</packaging>
13
14     <scm>
15       <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
16       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
17       <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
18       <tag>HEAD</tag>
19     </scm>
20
21     <distributionManagement>
22       <!-- OpenDayLight Released artifact -->
23       <repository>
24         <id>opendaylight-release</id>
25         <url>${nexusproxy}/repositories/opendaylight.release/</url>
26       </repository>
27       <!-- OpenDayLight Snapshot artifact -->
28       <snapshotRepository>
29         <id>opendaylight-snapshot</id>
30         <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
31       </snapshotRepository>
32       <!-- Site deployment -->
33       <!-- site>
34            <id>website</id>
35            <url>${sitedeploy}</url>
36            </site -->
37     </distributionManagement>
38
39     <properties>
40       <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
41       <slf4j.version>1.7.2</slf4j.version>
42       <logback.version>1.0.9</logback.version>
43       <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
44       <openflowjava.version>0.1-SNAPSHOT</openflowjava.version>
45       <controller.model.version>1.0-SNAPSHOT</controller.model.version>
46     </properties>
47
48     <dependencyManagement>
49       <dependencies>
50         <dependency>
51           <groupId>org.javassist</groupId>
52           <artifactId>javassist</artifactId>
53           <version>3.17.1-GA</version>
54         </dependency>
55
56         <dependency>
57           <groupId>com.google.guava</groupId>
58           <artifactId>guava</artifactId>
59           <version>14.0.1</version>
60         </dependency>
61         <dependency>
62           <groupId>equinoxSDK381</groupId>
63           <artifactId>org.eclipse.osgi</artifactId>
64           <version>3.8.1.v20120830-144521</version>
65         </dependency>
66         <dependency>
67           <groupId>org.opendaylight.openflowjava</groupId>
68           <artifactId>openflow-protocol-impl</artifactId>
69           <version>${openflowjava.version}</version>
70         </dependency>
71         <dependency>
72           <groupId>org.opendaylight.openflowjava</groupId>
73           <artifactId>openflow-protocol-api</artifactId>
74           <version>${openflowjava.version}</version>
75         </dependency>
76         <dependency>
77           <groupId>org.opendaylight.openflowjava</groupId>
78           <artifactId>openflow-protocol-spi</artifactId>
79           <version>${openflowjava.version}</version>
80         </dependency>
81         <dependency>
82           <groupId>org.opendaylight.openflowjava</groupId>
83           <artifactId>simple-client</artifactId>
84           <version>${openflowjava.version}</version>
85         </dependency>
86         <dependency>
87           <groupId>org.opendaylight.controller.model</groupId>
88           <artifactId>model-flow-base</artifactId>
89           <version>${controller.model.version}</version>
90         </dependency>
91         <dependency>
92           <groupId>org.opendaylight.controller.model</groupId>
93           <artifactId>model-flow-service</artifactId>
94           <version>${controller.model.version}</version>
95         </dependency>
96         <dependency>
97           <groupId>org.opendaylight.controller.model</groupId>
98           <artifactId>model-flow-statistics</artifactId>
99           <version>${controller.model.version}</version>
100         </dependency>
101         <dependency>
102           <groupId>org.opendaylight.controller.model</groupId>
103           <artifactId>model-inventory</artifactId>
104           <version>${controller.model.version}</version>
105         </dependency>
106         <dependency>
107           <groupId>org.opendaylight.controller</groupId>
108           <artifactId>sal-binding-api</artifactId>
109           <version>${controller.model.version}</version>
110         </dependency>
111
112         <dependency>
113             <groupId>xml-apis</groupId>
114             <artifactId>xml-apis</artifactId>
115             <version>1.4.01</version>
116         </dependency>
117
118         <dependency>
119           <groupId>org.slf4j</groupId>
120           <artifactId>slf4j-log4j12</artifactId>
121           <version>${slf4j.version}</version>
122         </dependency>
123         <dependency>
124           <groupId>org.slf4j</groupId>
125           <artifactId>log4j-over-slf4j</artifactId>
126           <version>${slf4j.version}</version>
127         </dependency>
128         <dependency>
129           <groupId>ch.qos.logback</groupId>
130           <artifactId>logback-core</artifactId>
131           <version>${logback.version}</version>
132         </dependency>
133         <dependency>
134           <groupId>ch.qos.logback</groupId>
135           <artifactId>logback-classic</artifactId>
136           <version>${logback.version}</version>
137         </dependency>
138
139         <dependency>
140             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
141             <artifactId>xtend-lib-osgi</artifactId>
142             <version>2.4.3</version>
143             <scope>test</scope>
144         </dependency>
145
146         <dependency>
147           <groupId>junit</groupId>
148           <artifactId>junit</artifactId>
149           <version>4.8.1</version>
150           <scope>test</scope>
151         </dependency>
152         <dependency>
153           <groupId>org.mockito</groupId>
154             <artifactId>mockito-all</artifactId>
155             <version>1.9.5</version>
156             <scope>test</scope>
157         </dependency>
158       </dependencies>
159     </dependencyManagement>
160
161     <build>
162         <pluginManagement>
163           <plugins>
164             <plugin>
165               <groupId>org.apache.maven.plugins</groupId>
166               <artifactId>maven-compiler-plugin</artifactId>
167               <configuration>
168                 <source>1.7</source>
169                 <target>1.7</target>
170               </configuration>
171             </plugin>
172             <plugin>
173               <groupId>org.ops4j.pax.exam</groupId>
174               <artifactId>maven-paxexam-plugin</artifactId>
175               <version>1.2.4</version>
176             </plugin>
177           </plugins>
178
179         </pluginManagement>
180     </build>
181
182     <profiles>
183       <profile>
184         <id>findbugsReport</id>
185         <reporting>
186           <plugins>
187             <plugin>
188               <groupId>org.apache.maven.plugins</groupId>
189               <artifactId>maven-project-info-reports-plugin</artifactId>
190               <version>2.7</version>
191               <configuration>
192                 <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
193                 <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
194               </configuration>
195               <reportSets>
196                 <reportSet>
197                   <reports>
198                     <report>index</report>
199                     <report>project-team</report>
200                     <report>license</report>
201                     <report>mailing-list</report>
202                     <report>plugin-management</report>
203                     <report>cim</report>
204                     <report>issue-tracking</report>
205                     <report>scm</report>
206                     <report>summary</report>
207                   </reports>
208                 </reportSet>
209               </reportSets>
210             </plugin>
211             <plugin>
212               <groupId>org.codehaus.mojo</groupId>
213               <artifactId>findbugs-maven-plugin</artifactId>
214               <version>2.5.2</version>
215             </plugin>
216             <plugin>
217               <groupId>org.apache.maven.plugins</groupId>
218               <artifactId>maven-pmd-plugin</artifactId>
219               <version>3.0.1</version>
220             </plugin>
221             <plugin>
222               <groupId>org.apache.maven.plugins</groupId>
223               <artifactId>maven-jxr-plugin</artifactId>
224               <version>2.3</version>
225             </plugin>
226           </plugins>
227         </reporting>
228       </profile>
229     </profiles>
230
231     <repositories>
232       <repository>
233         <id>opendaylight-release</id>
234         <name>opendaylight-release</name>
235         <url>${nexusproxy}/repositories/opendaylight.release/</url>
236         <snapshots>
237           <enabled>false</enabled>
238         </snapshots>
239       </repository>
240       <repository>
241         <id>opendaylight-snapshot</id>
242         <name>opendaylight-snapshot</name>
243         <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
244         <releases>
245           <enabled>false</enabled>
246         </releases>
247       </repository>
248       <repository>
249         <id>thirdparty</id>
250         <name>thirdparty</name>
251         <url>${nexusproxy}/repositories/thirdparty/</url>
252         <snapshots>
253           <enabled>false</enabled>
254         </snapshots>
255       </repository>
256
257     </repositories>
258
259     <pluginRepositories>
260       <pluginRepository>
261         <id>opendaylight-central</id>
262         <name>opendaylight-central</name>
263         <url>${nexusproxy}/repositories/central/</url>
264         <snapshots>
265           <enabled>false</enabled>
266         </snapshots>
267       </pluginRepository>
268       <pluginRepository>
269         <id>opendaylight-snapshot</id>
270         <name>central2</name>
271         <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
272         <releases>
273           <enabled>false</enabled>
274         </releases>
275       </pluginRepository>
276     </pluginRepositories>
277     <modules>
278       <module>openflowplugin</module>
279       <module>distribution/base</module>
280       <module>openflowplugin-it</module>
281       <module>test-provider</module>
282       <module>drop-test</module>
283     </modules>
284 </project>