changed pom structure, removed dependency on controller parent pom
[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-commons</artifactId>
8         <version>0.0.1-SNAPSHOT</version>
9         <relativePath>../../commons</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             <version>1.0-SNAPSHOT</version>
47         </dependency>
48         <dependency>
49             <artifactId>model-flow-service</artifactId>
50             <groupId>org.opendaylight.controller.model</groupId>
51             <version>1.0-SNAPSHOT</version>
52         </dependency>
53         <dependency>
54             <artifactId>model-flow-statistics</artifactId>
55             <groupId>org.opendaylight.controller.model</groupId>
56             <version>1.0-SNAPSHOT</version>
57         </dependency>
58         <dependency>
59             <artifactId>model-flow-management</artifactId>
60             <groupId>org.opendaylight.controller.model</groupId>
61             <version>1.0-SNAPSHOT</version>
62         </dependency>
63         <dependency>
64             <artifactId>model-inventory</artifactId>
65             <groupId>org.opendaylight.controller.model</groupId>
66             <version>1.0-SNAPSHOT</version>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.controller</groupId>
70             <artifactId>sal-binding-api</artifactId>
71             <version>1.0-SNAPSHOT</version>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.yangtools</groupId>
75             <artifactId>yang-binding</artifactId>
76             <version>0.6.0-SNAPSHOT</version>
77         </dependency>
78         <dependency>
79             <groupId>junit</groupId>
80             <artifactId>junit</artifactId>
81             <version>4.8.1</version>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.controller</groupId>
86             <artifactId>sal-common-util</artifactId>
87             <version>${yang.prototype.version}</version>
88             <scope>test</scope>
89         </dependency>
90     </dependencies>
91 </project>
92