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