vlan ID fix
[openflowplugin.git] / openflowplugin / 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     <parent>
5         <groupId>org.opendaylight.openflowplugin</groupId>
6         <artifactId>openflowplugin-parent</artifactId>
7         <version>0.0.3-SNAPSHOT</version>
8         <relativePath>../</relativePath>
9     </parent>
10
11     <artifactId>openflowplugin</artifactId>
12     <packaging>bundle</packaging>
13
14     <build>
15         <plugins>
16             <plugin>
17                 <groupId>org.apache.felix</groupId>
18                 <artifactId>maven-bundle-plugin</artifactId>
19                 <version>2.3.6</version>
20                 <extensions>true</extensions>
21                 <configuration>
22                     <instructions>
23                         <Bundle-Activator>
24                             org.opendaylight.openflowplugin.openflow.md.Activator
25                         </Bundle-Activator>
26                         <Private-Package>
27                             org.opendaylight.openflowplugin.md.*
28                         </Private-Package>
29                     </instructions>
30                     <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
31                 </configuration>
32             </plugin>
33         </plugins>
34     </build>
35     <dependencies>
36         <dependency>
37             <groupId>org.opendaylight.controller</groupId>
38             <artifactId>sal</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.controller</groupId>
42             <artifactId>sal.connection</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.controller.model</groupId>
46             <artifactId>model-flow-base</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.controller.model</groupId>
50             <artifactId>model-flow-service</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.controller.model</groupId>
54             <artifactId>model-flow-statistics</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.controller.model</groupId>
58             <artifactId>model-inventory</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.controller</groupId>
62             <artifactId>sal-binding-api</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.openflowjava</groupId>
66             <artifactId>openflow-protocol-api</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.openflowjava</groupId>
70             <artifactId>openflow-protocol-spi</artifactId>
71         </dependency>
72
73         <dependency>
74             <groupId>com.google.guava</groupId>
75             <artifactId>guava</artifactId>
76         </dependency>
77         <dependency>
78          <groupId>org.apache.commons</groupId>
79          <artifactId>commons-lang3</artifactId>
80          <version>3.1</version>
81        </dependency>
82         <dependency>
83             <groupId>equinoxSDK381</groupId>
84             <artifactId>org.eclipse.osgi</artifactId>
85         </dependency>
86
87
88         <dependency>
89             <groupId>junit</groupId>
90             <artifactId>junit</artifactId>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94           <groupId>org.mockito</groupId>
95             <artifactId>mockito-all</artifactId>
96             <scope>test</scope>
97         </dependency>
98         
99         <dependency>
100             <groupId>org.slf4j</groupId>
101             <artifactId>slf4j-log4j12</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.controller</groupId>
105             <artifactId>sal-common-util</artifactId>
106         </dependency>
107     </dependencies>
108 </project>
109