triggering jenkins merge job
[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     <build>
17         <plugins>
18             <plugin>
19                 <groupId>org.apache.felix</groupId>
20                 <artifactId>maven-bundle-plugin</artifactId>
21                 <version>2.3.6</version>
22                 <extensions>true</extensions>
23                 <configuration>
24                     <instructions>
25                         <Export-Package>
26                             org.opendaylight.openflowplugin.openflow.internal
27                         </Export-Package>
28                         <Embed-Transitive>
29                             false
30                         </Embed-Transitive>
31                         <Bundle-Activator>
32                             org.opendaylight.openflowplugin.openflow.internal.Activator
33                         </Bundle-Activator>
34                     </instructions>
35                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
36                 </configuration>
37             </plugin>
38         </plugins>
39     </build>
40     <dependencies>
41         <dependency>
42             <groupId>org.opendaylight.controller</groupId>
43             <artifactId>sal</artifactId>
44             <version>0.5.0-SNAPSHOT</version>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.controller</groupId>
48             <artifactId>sal.connection</artifactId>
49             <version>0.1.0-SNAPSHOT</version>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.controller.thirdparty</groupId>
53             <artifactId>org.openflow.openflowj</artifactId>
54             <version>1.0.2-SNAPSHOT</version>
55         </dependency>
56         <dependency>
57             <artifactId>model-flow-base</artifactId>
58             <groupId>org.opendaylight.controller.model</groupId>
59             <version>1.0-SNAPSHOT</version>
60         </dependency>
61         <dependency>
62             <artifactId>model-flow-service</artifactId>
63             <groupId>org.opendaylight.controller.model</groupId>
64             <version>1.0-SNAPSHOT</version>
65         </dependency>
66         <dependency>
67             <artifactId>model-flow-statistics</artifactId>
68             <groupId>org.opendaylight.controller.model</groupId>
69             <version>1.0-SNAPSHOT</version>
70         </dependency>
71         <dependency>
72             <artifactId>model-inventory</artifactId>
73             <groupId>org.opendaylight.controller.model</groupId>
74             <version>1.0-SNAPSHOT</version>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.controller</groupId>
78             <artifactId>sal-binding-api</artifactId>
79             <version>1.0-SNAPSHOT</version>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.openflowjava</groupId>
83             <artifactId>openflow-protocol-api</artifactId>
84             <version>0.1-SNAPSHOT</version>
85         </dependency>
86         <dependency>
87             <groupId>junit</groupId>
88             <artifactId>junit</artifactId>
89             <version>4.8.1</version>
90             <scope>test</scope>
91         </dependency>
92     </dependencies>
93 </project>
94