dependency version update
[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"
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-parent</artifactId>
8         <version>0.0.1-SNAPSHOT</version>
9         <relativePath>../../</relativePath>
10     </parent>
11
12     <artifactId>sample-consumer</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     </properties>
19
20
21     <build>
22         <plugins>
23             <plugin>
24                 <groupId>org.apache.felix</groupId>
25                 <artifactId>maven-bundle-plugin</artifactId>
26                 <version>2.3.6</version>
27                 <extensions>true</extensions>
28                 <configuration>
29                     <instructions>
30                         <Embed-Transitive>
31                             false
32                         </Embed-Transitive>
33                         <Bundle-Activator>
34                             org.opendaylight.openflowplugin.openflow.samples.consumer.Activator
35                         </Bundle-Activator>
36                     </instructions>
37                     <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
38                 </configuration>
39             </plugin>
40         </plugins>
41     </build>
42     <dependencies>
43         <dependency>
44             <artifactId>model-flow-base</artifactId>
45             <groupId>org.opendaylight.controller.model</groupId>
46         </dependency>
47         <dependency>
48             <artifactId>model-flow-service</artifactId>
49             <groupId>org.opendaylight.controller.model</groupId>
50         </dependency>
51         <dependency>
52             <artifactId>model-flow-statistics</artifactId>
53             <groupId>org.opendaylight.controller.model</groupId>
54         </dependency>
55         <dependency>
56             <artifactId>model-flow-management</artifactId>
57             <groupId>org.opendaylight.controller.model</groupId>
58         </dependency>
59         <dependency>
60             <artifactId>model-inventory</artifactId>
61             <groupId>org.opendaylight.controller.model</groupId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.controller</groupId>
65             <artifactId>sal-binding-api</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.yangtools</groupId>
69             <artifactId>yang-binding</artifactId>
70             <version>0.6.0-SNAPSHOT</version>
71         </dependency>
72         <dependency>
73             <groupId>junit</groupId>
74             <artifactId>junit</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.controller</groupId>
79             <artifactId>sal-common-util</artifactId>
80             <version>${yang.prototype.version}</version>
81             <scope>test</scope>
82         </dependency>
83     </dependencies>
84 </project>
85