49126b12c97aa8fe04b7a783ca08874611c7f6ba
[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"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.openflowplugin</groupId>
7         <artifactId>openflowplugin-commons</artifactId>
8         <version>0.0.1-SNAPSHOT</version>
9         <relativePath>../commons</relativePath>
10     </parent>
11
12     <artifactId>openflowplugin</artifactId>
13     <packaging>bundle</packaging>
14
15     <properties>
16         <yang.prototype.version>1.0-SNAPSHOT</yang.prototype.version>
17         <yang.version>0.5.9-SNAPSHOT</yang.version>
18     </properties>
19
20     <build>
21         <plugins>
22             <plugin>
23                 <groupId>org.apache.felix</groupId>
24                 <artifactId>maven-bundle-plugin</artifactId>
25                 <version>2.3.6</version>
26                 <extensions>true</extensions>
27                 <configuration>
28                     <instructions>
29                         <Export-Package>
30                             org.opendaylight.openflowplugin.openflow.internal
31                         </Export-Package>
32                         <Embed-Transitive>
33                             false
34                         </Embed-Transitive>
35                         <Bundle-Activator>
36                             org.opendaylight.openflowplugin.openflow.internal.Activator
37                         </Bundle-Activator>
38                     </instructions>
39                     <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
40                 </configuration>
41             </plugin>
42         </plugins>
43     </build>
44     <dependencies>
45         <dependency>
46             <groupId>org.opendaylight.controller</groupId>
47             <artifactId>sal</artifactId>
48             <version>0.5.1-SNAPSHOT</version>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.controller</groupId>
52             <artifactId>sal.connection</artifactId>
53             <version>0.1.1-SNAPSHOT</version>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.controller.thirdparty</groupId>
57             <artifactId>org.openflow.openflowj</artifactId>
58             <version>1.0.2-SNAPSHOT</version>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.controller.model</groupId>
62             <artifactId>model-flow-base</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.controller.model</groupId>
66             <artifactId>model-flow-service</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.controller.model</groupId>
70             <artifactId>model-flow-statistics</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.controller.model</groupId>
74             <artifactId>model-inventory</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.controller</groupId>
78             <artifactId>sal-binding-api</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.openflowjava</groupId>
82             <artifactId>openflow-protocol-api</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.openflowjava</groupId>
86             <artifactId>openflow-protocol-spi</artifactId>
87         </dependency>
88
89         <dependency>
90             <groupId>com.google.guava</groupId>
91             <artifactId>guava</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>equinoxSDK381</groupId>
95             <artifactId>org.eclipse.osgi</artifactId>
96         </dependency>
97
98
99         <dependency>
100             <groupId>junit</groupId>
101             <artifactId>junit</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.slf4j</groupId>
106             <artifactId>slf4j-log4j12</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.controller</groupId>
110             <artifactId>sal-common-util</artifactId>
111             <version>${yang.prototype.version}</version>
112         </dependency>
113     </dependencies>
114 </project>
115