flow fix
[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       </dependencies>
153     </dependencyManagement>
154
155     <build>
156         <pluginManagement>
157           <plugins>
158             <plugin>
159               <groupId>org.apache.maven.plugins</groupId>
160               <artifactId>maven-compiler-plugin</artifactId>
161               <configuration>
162                 <source>1.7</source>
163                 <target>1.7</target>
164               </configuration>
165             </plugin>
166             <plugin>
167               <groupId>org.ops4j.pax.exam</groupId>
168               <artifactId>maven-paxexam-plugin</artifactId>
169               <version>1.2.4</version>
170             </plugin>
171           </plugins>
172
173         </pluginManagement>
174     </build>
175
176     <profiles>
177       <profile>
178         <id>findbugsReport</id>
179         <reporting>
180           <plugins>
181             <plugin>
182               <groupId>org.apache.maven.plugins</groupId>
183               <artifactId>maven-project-info-reports-plugin</artifactId>
184               <version>2.7</version>
185               <configuration>
186                 <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
187                 <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
188               </configuration>
189               <reportSets>
190                 <reportSet>
191                   <reports>
192                     <report>index</report>
193                     <report>project-team</report>
194                     <report>license</report>
195                     <report>mailing-list</report>
196                     <report>plugin-management</report>
197                     <report>cim</report>
198                     <report>issue-tracking</report>
199                     <report>scm</report>
200                     <report>summary</report>
201                   </reports>
202                 </reportSet>
203               </reportSets>
204             </plugin>
205             <plugin>
206               <groupId>org.codehaus.mojo</groupId>
207               <artifactId>findbugs-maven-plugin</artifactId>
208               <version>2.5.2</version>
209             </plugin>
210             <plugin>
211               <groupId>org.apache.maven.plugins</groupId>
212               <artifactId>maven-pmd-plugin</artifactId>
213               <version>3.0.1</version>
214             </plugin>
215             <plugin>
216               <groupId>org.apache.maven.plugins</groupId>
217               <artifactId>maven-jxr-plugin</artifactId>
218               <version>2.3</version>
219             </plugin>
220           </plugins>
221         </reporting>
222       </profile>
223     </profiles>
224
225     <repositories>
226       <repository>
227         <id>opendaylight-release</id>
228         <name>opendaylight-release</name>
229         <url>${nexusproxy}/repositories/opendaylight.release/</url>
230         <snapshots>
231           <enabled>false</enabled>
232         </snapshots>
233       </repository>
234       <repository>
235         <id>opendaylight-snapshot</id>
236         <name>opendaylight-snapshot</name>
237         <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
238         <releases>
239           <enabled>false</enabled>
240         </releases>
241       </repository>
242       <repository>
243         <id>thirdparty</id>
244         <name>thirdparty</name>
245         <url>${nexusproxy}/repositories/thirdparty/</url>
246         <snapshots>
247           <enabled>false</enabled>
248         </snapshots>
249       </repository>
250
251     </repositories>
252
253     <pluginRepositories>
254       <pluginRepository>
255         <id>opendaylight-central</id>
256         <name>opendaylight-central</name>
257         <url>${nexusproxy}/repositories/central/</url>
258         <snapshots>
259           <enabled>false</enabled>
260         </snapshots>
261       </pluginRepository>
262       <pluginRepository>
263         <id>opendaylight-snapshot</id>
264         <name>central2</name>
265         <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
266         <releases>
267           <enabled>false</enabled>
268         </releases>
269       </pluginRepository>
270     </pluginRepositories>
271     <modules>
272       <module>openflowplugin</module>
273       <module>distribution/base</module>
274       <module>openflowplugin-it</module>
275       <module>test-provider</module>
276     </modules>
277 </project>