Small fix for 3037-5 build failure
[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>org.slf4j</groupId>
114           <artifactId>slf4j-log4j12</artifactId>
115           <version>${slf4j.version}</version>
116         </dependency>
117         <dependency>
118           <groupId>org.slf4j</groupId>
119           <artifactId>log4j-over-slf4j</artifactId>
120           <version>${slf4j.version}</version>
121         </dependency>
122         <dependency>
123           <groupId>ch.qos.logback</groupId>
124           <artifactId>logback-core</artifactId>
125           <version>${logback.version}</version>
126         </dependency>
127         <dependency>
128           <groupId>ch.qos.logback</groupId>
129           <artifactId>logback-classic</artifactId>
130           <version>${logback.version}</version>
131         </dependency>
132
133         <dependency>
134             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
135             <artifactId>xtend-lib-osgi</artifactId>
136             <version>2.4.3</version>
137             <scope>test</scope>
138         </dependency>
139
140         <dependency>
141           <groupId>junit</groupId>
142           <artifactId>junit</artifactId>
143           <version>4.8.1</version>
144           <scope>test</scope>
145         </dependency>
146       </dependencies>
147     </dependencyManagement>
148
149     <build>
150         <pluginManagement>
151           <plugins>
152             <plugin>
153               <groupId>org.apache.maven.plugins</groupId>
154               <artifactId>maven-compiler-plugin</artifactId>
155               <configuration>
156                 <source>1.7</source>
157                 <target>1.7</target>
158               </configuration>
159             </plugin>
160             <plugin>
161               <groupId>org.ops4j.pax.exam</groupId>
162               <artifactId>maven-paxexam-plugin</artifactId>
163               <version>1.2.4</version>
164             </plugin>
165           </plugins>
166
167         </pluginManagement>
168     </build>
169
170     <profiles>
171       <profile>
172         <id>findbugsReport</id>
173         <reporting>
174           <plugins>
175             <plugin>
176               <groupId>org.apache.maven.plugins</groupId>
177               <artifactId>maven-project-info-reports-plugin</artifactId>
178               <version>2.7</version>
179               <configuration>
180                 <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
181                 <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
182               </configuration>
183               <reportSets>
184                 <reportSet>
185                   <reports>
186                     <report>index</report>
187                     <report>project-team</report>
188                     <report>license</report>
189                     <report>mailing-list</report>
190                     <report>plugin-management</report>
191                     <report>cim</report>
192                     <report>issue-tracking</report>
193                     <report>scm</report>
194                     <report>summary</report>
195                   </reports>
196                 </reportSet>
197               </reportSets>
198             </plugin>
199             <plugin>
200               <groupId>org.codehaus.mojo</groupId>
201               <artifactId>findbugs-maven-plugin</artifactId>
202               <version>2.5.2</version>
203             </plugin>
204             <plugin>
205               <groupId>org.apache.maven.plugins</groupId>
206               <artifactId>maven-pmd-plugin</artifactId>
207               <version>3.0.1</version>
208             </plugin>
209             <plugin>
210               <groupId>org.apache.maven.plugins</groupId>
211               <artifactId>maven-jxr-plugin</artifactId>
212               <version>2.3</version>
213             </plugin>
214           </plugins>
215         </reporting>
216       </profile>
217     </profiles>
218
219     <repositories>
220       <repository>
221         <id>opendaylight-release</id>
222         <name>opendaylight-release</name>
223         <url>${nexusproxy}/repositories/opendaylight.release/</url>
224         <snapshots>
225           <enabled>false</enabled>
226         </snapshots>
227       </repository>
228       <repository>
229         <id>opendaylight-snapshot</id>
230         <name>opendaylight-snapshot</name>
231         <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
232         <releases>
233           <enabled>false</enabled>
234         </releases>
235       </repository>
236       <repository>
237         <id>thirdparty</id>
238         <name>thirdparty</name>
239         <url>${nexusproxy}/repositories/thirdparty/</url>
240         <snapshots>
241           <enabled>false</enabled>
242         </snapshots>
243       </repository>
244
245     </repositories>
246
247     <pluginRepositories>
248       <pluginRepository>
249         <id>opendaylight-central</id>
250         <name>opendaylight-central</name>
251         <url>${nexusproxy}/repositories/central/</url>
252         <snapshots>
253           <enabled>false</enabled>
254         </snapshots>
255       </pluginRepository>
256       <pluginRepository>
257         <id>opendaylight-snapshot</id>
258         <name>central2</name>
259         <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
260         <releases>
261           <enabled>false</enabled>
262         </releases>
263       </pluginRepository>
264     </pluginRepositories>
265     <modules>
266       <module>openflowplugin</module>
267       <module>distribution/base</module>
268       <module>openflowplugin-it</module>
269       <module>test-provider</module>
270     </modules>
271 </project>