Merge remote-tracking branch 'liblldp/master'
[openflowplugin.git] / samples / sample-bundles / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2017 Pantheon Technologies s.r.o. and others.  All rights reserved.
4   ~
5   ~ This program and the accompanying materials are made available under the
6   ~ terms of the Eclipse Public License v1.0 which accompanies this distribution,
7   ~ and is available at http://www.eclipse.org/legal/epl-v10.html
8   -->
9
10 <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">
11     <modelVersion>4.0.0</modelVersion>
12     <parent>
13         <groupId>org.opendaylight.openflowplugin</groupId>
14         <artifactId>openflowplugin-parent</artifactId>
15         <version>0.6.0-SNAPSHOT</version>
16         <relativePath>../../parent</relativePath>
17     </parent>
18
19     <artifactId>sample-bundles</artifactId>
20     <packaging>bundle</packaging>
21
22
23     <build>
24         <plugins>
25             <plugin>
26                 <groupId>org.apache.felix</groupId>
27                 <artifactId>maven-bundle-plugin</artifactId>
28                 <extensions>true</extensions>
29                 <configuration>
30                     <instructions>
31                         <Embed-Transitive>
32                             false
33                         </Embed-Transitive>
34                         <Bundle-Activator>
35                             org.opendaylight.openflowplugin.samples.sample.bundles.Activator
36                         </Bundle-Activator>
37                     </instructions>
38                     <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
39                 </configuration>
40             </plugin>
41         </plugins>
42     </build>
43     <dependencies>
44         <dependency>
45             <groupId>org.opendaylight.openflowplugin.model</groupId>
46             <artifactId>model-flow-base</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.openflowplugin.model</groupId>
50             <artifactId>model-flow-service</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.controller.model</groupId>
54             <artifactId>model-inventory</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.controller</groupId>
58             <artifactId>sal-binding-api</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.mdsal</groupId>
62             <artifactId>yang-binding</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.openflowplugin</groupId>
66             <artifactId>openflowplugin-api</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.osgi</groupId>
70             <artifactId>org.osgi.core</artifactId>
71         </dependency>
72
73
74         <dependency>
75             <groupId>junit</groupId>
76             <artifactId>junit</artifactId>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.openflowplugin</groupId>
81             <artifactId>openflowplugin-extension-onf</artifactId>
82         </dependency>
83     </dependencies>
84 </project>
85