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