860c3a549d505419a092d41135ca9174688633a3
[openflowplugin.git] / samples / sample-consumer / 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>sample-consumer</artifactId>
12     <version>0.0.3-SNAPSHOT</version>
13     <packaging>bundle</packaging>
14
15     <build>
16         <plugins>
17             <plugin>
18                 <groupId>org.apache.felix</groupId>
19                 <artifactId>maven-bundle-plugin</artifactId>
20                 <version>${maven.bundle.version}</version>
21                 <extensions>true</extensions>
22                 <configuration>
23                     <instructions>
24                         <Embed-Transitive>
25                             false
26                         </Embed-Transitive>
27                         <Bundle-Activator>
28                             org.opendaylight.openflowplugin.openflow.samples.consumer.Activator
29                         </Bundle-Activator>
30                     </instructions>
31                     <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
32                 </configuration>
33             </plugin>
34         </plugins>
35     </build>
36     <dependencies>
37         <dependency>
38             <artifactId>model-flow-base</artifactId>
39             <groupId>org.opendaylight.controller.model</groupId>
40         </dependency>
41         <dependency>
42             <artifactId>model-flow-service</artifactId>
43             <groupId>org.opendaylight.controller.model</groupId>
44         </dependency>
45         <dependency>
46             <artifactId>model-flow-statistics</artifactId>
47             <groupId>org.opendaylight.controller.model</groupId>
48         </dependency>
49         <dependency>
50             <artifactId>model-inventory</artifactId>
51             <groupId>org.opendaylight.controller.model</groupId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.controller</groupId>
55             <artifactId>sal-binding-api</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.yangtools</groupId>
59             <artifactId>yang-binding</artifactId>
60         </dependency>
61         <dependency>
62           <groupId>org.osgi</groupId>
63           <artifactId>org.osgi.core</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>junit</groupId>
67             <artifactId>junit</artifactId>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.controller</groupId>
72             <artifactId>sal-common-util</artifactId>
73             <scope>test</scope>
74         </dependency>
75     </dependencies>
76 </project>
77