344c4a77d018ecf70bcccfd90ee8f1895c73f939
[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 <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">
10     <modelVersion>4.0.0</modelVersion>
11     <parent>
12         <groupId>org.opendaylight.openflowplugin</groupId>
13         <artifactId>openflowplugin-parent</artifactId>
14         <version>0.10.0-SNAPSHOT</version>
15         <relativePath>../../parent</relativePath>
16     </parent>
17
18     <artifactId>sample-bundles</artifactId>
19     <packaging>bundle</packaging>
20
21
22     <build>
23         <plugins>
24             <plugin>
25                 <groupId>org.apache.felix</groupId>
26                 <artifactId>maven-bundle-plugin</artifactId>
27                 <extensions>true</extensions>
28             </plugin>
29         </plugins>
30     </build>
31     <dependencies>
32         <dependency>
33             <groupId>javax.annotation</groupId>
34             <artifactId>javax.annotation-api</artifactId>
35             <optional>true</optional>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.openflowplugin.model</groupId>
39             <artifactId>model-flow-base</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.openflowplugin.model</groupId>
43             <artifactId>model-flow-service</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.controller.model</groupId>
47             <artifactId>model-inventory</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.mdsal</groupId>
51             <artifactId>mdsal-binding-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.mdsal</groupId>
55             <artifactId>yang-binding</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.openflowplugin</groupId>
59             <artifactId>openflowplugin-api</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.osgi</groupId>
63             <artifactId>org.osgi.core</artifactId>
64         </dependency>
65
66
67         <dependency>
68             <groupId>junit</groupId>
69             <artifactId>junit</artifactId>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.openflowplugin</groupId>
74             <artifactId>openflowplugin-extension-onf</artifactId>
75         </dependency>
76     </dependencies>
77 </project>