dependency version update
[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.5</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-management</artifactId>
94           <version>${controller.model.version}</version>
95         </dependency>
96         <dependency>
97           <groupId>org.opendaylight.controller.model</groupId>
98           <artifactId>model-flow-service</artifactId>
99           <version>${controller.model.version}</version>
100         </dependency>
101         <dependency>
102           <groupId>org.opendaylight.controller.model</groupId>
103           <artifactId>model-flow-statistics</artifactId>
104           <version>${controller.model.version}</version>
105         </dependency>
106         <dependency>
107           <groupId>org.opendaylight.controller.model</groupId>
108           <artifactId>model-inventory</artifactId>
109           <version>${controller.model.version}</version>
110         </dependency>
111         <dependency>
112           <groupId>org.opendaylight.controller</groupId>
113           <artifactId>sal-binding-api</artifactId>
114           <version>${controller.model.version}</version>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.controller</groupId>
118             <artifactId>sal</artifactId>
119             <version>0.7.0-SNAPSHOT</version>
120         </dependency>
121         <dependency>
122             <groupId>org.opendaylight.controller</groupId>
123             <artifactId>sal.connection</artifactId>
124             <version>0.1.1-SNAPSHOT</version>
125         </dependency>
126         <dependency>
127             <groupId>org.opendaylight.controller</groupId>
128             <artifactId>sal-common-util</artifactId>
129             <version>1.0-SNAPSHOT</version>
130         </dependency>
131
132         <dependency>
133             <groupId>xml-apis</groupId>
134             <artifactId>xml-apis</artifactId>
135             <version>1.4.01</version>
136         </dependency>
137
138         <dependency>
139           <groupId>org.slf4j</groupId>
140           <artifactId>slf4j-log4j12</artifactId>
141           <version>${slf4j.version}</version>
142         </dependency>
143         <dependency>
144           <groupId>org.slf4j</groupId>
145           <artifactId>log4j-over-slf4j</artifactId>
146           <version>${slf4j.version}</version>
147         </dependency>
148         <dependency>
149           <groupId>ch.qos.logback</groupId>
150           <artifactId>logback-core</artifactId>
151           <version>${logback.version}</version>
152         </dependency>
153         <dependency>
154           <groupId>ch.qos.logback</groupId>
155           <artifactId>logback-classic</artifactId>
156           <version>${logback.version}</version>
157         </dependency>
158
159         <dependency>
160             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
161             <artifactId>xtend-lib-osgi</artifactId>
162             <version>2.4.3</version>
163             <scope>test</scope>
164         </dependency>
165
166         <dependency>
167             <groupId>commons-lang</groupId>
168             <artifactId>commons-lang</artifactId>
169             <version>2.6</version>
170         </dependency>
171
172         <dependency>
173           <groupId>junit</groupId>
174           <artifactId>junit</artifactId>
175           <version>4.8.1</version>
176           <scope>test</scope>
177         </dependency>
178         <dependency>
179           <groupId>org.mockito</groupId>
180             <artifactId>mockito-all</artifactId>
181             <version>1.9.5</version>
182             <scope>test</scope>
183         </dependency>
184       </dependencies>
185     </dependencyManagement>
186
187     <build>
188         <pluginManagement>
189           <plugins>
190             <plugin>
191               <groupId>org.apache.maven.plugins</groupId>
192               <artifactId>maven-compiler-plugin</artifactId>
193               <configuration>
194                 <source>1.7</source>
195                 <target>1.7</target>
196               </configuration>
197             </plugin>
198             <plugin>
199               <groupId>org.ops4j.pax.exam</groupId>
200               <artifactId>maven-paxexam-plugin</artifactId>
201               <version>1.2.4</version>
202             </plugin>
203           </plugins>
204
205         </pluginManagement>
206     </build>
207
208     <profiles>
209       <profile>
210         <id>findbugsReport</id>
211         <reporting>
212           <plugins>
213             <plugin>
214               <groupId>org.apache.maven.plugins</groupId>
215               <artifactId>maven-project-info-reports-plugin</artifactId>
216               <version>2.7</version>
217               <configuration>
218                 <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
219                 <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
220               </configuration>
221               <reportSets>
222                 <reportSet>
223                   <reports>
224                     <report>index</report>
225                     <report>project-team</report>
226                     <report>license</report>
227                     <report>mailing-list</report>
228                     <report>plugin-management</report>
229                     <report>cim</report>
230                     <report>issue-tracking</report>
231                     <report>scm</report>
232                     <report>summary</report>
233                   </reports>
234                 </reportSet>
235               </reportSets>
236             </plugin>
237             <plugin>
238               <groupId>org.codehaus.mojo</groupId>
239               <artifactId>findbugs-maven-plugin</artifactId>
240               <version>2.5.2</version>
241             </plugin>
242             <plugin>
243               <groupId>org.apache.maven.plugins</groupId>
244               <artifactId>maven-pmd-plugin</artifactId>
245               <version>3.0.1</version>
246             </plugin>
247             <plugin>
248               <groupId>org.apache.maven.plugins</groupId>
249               <artifactId>maven-jxr-plugin</artifactId>
250               <version>2.3</version>
251             </plugin>
252           </plugins>
253         </reporting>
254       </profile>
255     </profiles>
256
257     <repositories>
258       <repository>
259         <id>opendaylight-release</id>
260         <name>opendaylight-release</name>
261         <url>${nexusproxy}/repositories/opendaylight.release/</url>
262         <snapshots>
263           <enabled>false</enabled>
264         </snapshots>
265       </repository>
266       <repository>
267         <id>opendaylight-snapshot</id>
268         <name>opendaylight-snapshot</name>
269         <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
270         <releases>
271           <enabled>false</enabled>
272         </releases>
273       </repository>
274       <repository>
275         <id>public</id>
276         <name>public</name>
277         <url>${nexusproxy}/groups/public/</url>
278         <snapshots>
279           <enabled>false</enabled>
280         </snapshots>
281       </repository>
282
283     </repositories>
284
285     <pluginRepositories>
286       <pluginRepository>
287         <id>opendaylight-central</id>
288         <name>opendaylight-central</name>
289         <url>${nexusproxy}/repositories/public/</url>
290         <snapshots>
291           <enabled>false</enabled>
292         </snapshots>
293       </pluginRepository>
294       <pluginRepository>
295         <id>opendaylight-snapshot</id>
296         <name>central2</name>
297         <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
298         <releases>
299           <enabled>false</enabled>
300         </releases>
301       </pluginRepository>
302     </pluginRepositories>
303     <modules>
304       <module>openflowplugin</module>
305       <module>distribution/base</module>
306       <module>openflowplugin-it</module>
307       <module>test-provider</module>
308       <module>drop-test</module>
309     </modules>
310 </project>