Small fix for 3037-5 build failure
[openflowplugin.git] / commons / 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-commons</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
87         <dependency>
88           <groupId>org.opendaylight.controller</groupId>
89           <artifactId>sal</artifactId>
90           <version>0.5.1-SNAPSHOT</version>
91         </dependency>
92         <dependency>
93           <groupId>org.opendaylight.controller</groupId>
94           <artifactId>sal.connection</artifactId>
95           <version>0.1.1-SNAPSHOT</version>
96         </dependency>
97         <dependency>
98           <groupId>org.opendaylight.controller.thirdparty</groupId>
99           <artifactId>org.openflow.openflowj</artifactId>
100           <version>1.0.2-SNAPSHOT</version>
101         </dependency>
102         <dependency>
103           <groupId>org.opendaylight.controller.model</groupId>
104           <artifactId>model-flow-base</artifactId>
105           <version>${controller.model.version}</version>
106         </dependency>
107         <dependency>
108           <groupId>org.opendaylight.controller.model</groupId>
109           <artifactId>model-flow-service</artifactId>
110           <version>${controller.model.version}</version>
111         </dependency>
112         <dependency>
113           <groupId>org.opendaylight.controller.model</groupId>
114           <artifactId>model-flow-statistics</artifactId>
115           <version>${controller.model.version}</version>
116         </dependency>
117         <dependency>
118           <groupId>org.opendaylight.controller.model</groupId>
119           <artifactId>model-inventory</artifactId>
120           <version>${controller.model.version}</version>
121         </dependency>
122         <dependency>
123           <groupId>org.opendaylight.controller</groupId>
124           <artifactId>sal-binding-api</artifactId>
125           <version>${controller.model.version}</version>
126         </dependency>
127
128         <dependency>
129           <groupId>org.slf4j</groupId>
130           <artifactId>slf4j-log4j12</artifactId>
131           <version>${slf4j.version}</version>
132         </dependency>
133         <dependency>
134           <groupId>org.slf4j</groupId>
135           <artifactId>log4j-over-slf4j</artifactId>
136           <version>${slf4j.version}</version>
137         </dependency>
138         <dependency>
139           <groupId>ch.qos.logback</groupId>
140           <artifactId>logback-core</artifactId>
141           <version>${logback.version}</version>
142         </dependency>
143         <dependency>
144           <groupId>ch.qos.logback</groupId>
145           <artifactId>logback-classic</artifactId>
146           <version>${logback.version}</version>
147         </dependency>
148
149         <dependency>
150             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
151             <artifactId>xtend-lib-osgi</artifactId>
152             <version>2.4.3</version>
153             <scope>test</scope>
154         </dependency>
155
156         <dependency>
157           <groupId>junit</groupId>
158           <artifactId>junit</artifactId>
159           <version>4.8.1</version>
160           <scope>test</scope>
161         </dependency>
162       </dependencies>
163     </dependencyManagement>
164
165     <build>
166         <pluginManagement>
167           <plugins>
168             <plugin>
169               <groupId>org.apache.maven.plugins</groupId>
170               <artifactId>maven-compiler-plugin</artifactId>
171               <configuration>
172                 <source>1.7</source>
173                 <target>1.7</target>
174               </configuration>
175             </plugin>
176             <plugin>
177               <groupId>org.ops4j.pax.exam</groupId>
178               <artifactId>maven-paxexam-plugin</artifactId>
179               <version>1.2.4</version>
180             </plugin>
181           </plugins>
182
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.1</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
235     <repositories>
236       <repository>
237         <id>opendaylight-release</id>
238         <name>opendaylight-release</name>
239         <url>${nexusproxy}/repositories/opendaylight.release/</url>
240         <snapshots>
241           <enabled>false</enabled>
242         </snapshots>
243       </repository>
244       <repository>
245         <id>opendaylight-snapshot</id>
246         <name>opendaylight-snapshot</name>
247         <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
248         <releases>
249           <enabled>false</enabled>
250         </releases>
251       </repository>
252       <repository>
253         <id>thirdparty</id>
254         <name>thirdparty</name>
255         <url>${nexusproxy}/repositories/thirdparty/</url>
256         <snapshots>
257           <enabled>false</enabled>
258         </snapshots>
259       </repository>
260
261     </repositories>
262
263     <pluginRepositories>
264       <pluginRepository>
265         <id>opendaylight-central</id>
266         <name>opendaylight-central</name>
267         <url>${nexusproxy}/repositories/central/</url>
268         <snapshots>
269           <enabled>false</enabled>
270         </snapshots>
271       </pluginRepository>
272       <pluginRepository>
273         <id>opendaylight-snapshot</id>
274         <name>central2</name>
275         <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
276         <releases>
277           <enabled>false</enabled>
278         </releases>
279       </pluginRepository>
280     </pluginRepositories>
281 </project>