Add INFO.yaml for snmp4sdn
[snmp4sdn.git] / features / odl-snmp4sdn-snmp4sdn / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!--
4 #
5 # Copyright (c) 2017 NEC Corporation
6 # All rights reserved.
7 #
8 # This program and the accompanying materials are made available under the
9 # terms of the Eclipse Public License v1.0 which accompanies this
10 # distribution, and is available at http://www.eclipse.org/legal/epl-v10.html
11 #
12 -->
13 <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">
14   <modelVersion>4.0.0</modelVersion>
15
16   <parent>
17     <groupId>org.opendaylight.odlparent</groupId>
18     <artifactId>single-feature-parent</artifactId>
19     <version>2.0.4</version>
20     <relativePath />
21   </parent>
22
23   <groupId>org.opendaylight.snmp4sdn</groupId>
24   <artifactId>odl-snmp4sdn-snmp4sdn</artifactId>
25   <version>0.7.0-SNAPSHOT</version>
26   <packaging>feature</packaging>
27
28   <name>OpenDaylight :: SNMP4SDN :: SNMP4SDN Plugin</name>
29
30   <properties>
31     <restconf.version>1.7.0-SNAPSHOT</restconf.version>
32     <mdsal.model.version>0.12.0-SNAPSHOT</mdsal.model.version>
33     <openflowplugin.version>0.6.0-SNAPSHOT</openflowplugin.version>
34   </properties>
35
36   <dependencyManagement>
37     <dependencies>
38       <dependency>
39         <groupId>org.opendaylight.mdsal.model</groupId>
40         <artifactId>mdsal-model-artifacts</artifactId>
41         <version>${mdsal.model.version}</version>
42         <type>pom</type>
43         <scope>import</scope>
44       </dependency>
45
46       <dependency>
47         <groupId>org.opendaylight.controller</groupId>
48         <artifactId>mdsal-artifacts</artifactId>
49         <version>1.7.0-SNAPSHOT</version>
50         <type>pom</type>
51         <scope>import</scope>
52       </dependency>
53     </dependencies>
54   </dependencyManagement>
55
56   <dependencies>
57
58     <dependency>
59       <groupId>org.opendaylight.mdsal.model</groupId>
60       <artifactId>odl-mdsal-models</artifactId>
61       <version>${mdsal.model.version}</version>
62       <type>xml</type>
63       <classifier>features</classifier>
64     </dependency>
65
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>odl-mdsal-broker</artifactId>
69       <version>1.7.0-SNAPSHOT</version>
70       <type>xml</type>
71       <classifier>features</classifier>
72     </dependency>
73
74     <dependency>
75       <groupId>org.opendaylight.netconf</groupId>
76       <artifactId>odl-mdsal-apidocs</artifactId>
77       <version>${restconf.version}</version>
78       <type>xml</type>
79       <classifier>features</classifier>
80     </dependency>
81
82     <dependency>
83       <groupId>org.opendaylight.netconf</groupId>
84       <artifactId>odl-restconf</artifactId>
85       <version>${restconf.version}</version>
86       <type>xml</type>
87       <classifier>features</classifier>
88     </dependency>
89
90     <dependency>
91       <groupId>org.opendaylight.openflowplugin</groupId>
92       <artifactId>odl-openflowplugin-nsf-model</artifactId>
93       <version>${openflowplugin.version}</version>
94       <type>xml</type>
95       <classifier>features</classifier>
96     </dependency>
97
98     <dependency>
99       <groupId>org.dom4j</groupId>
100       <artifactId>dom4j</artifactId>
101       <version>2.0.0</version>
102     </dependency>
103
104     <dependency>
105       <groupId>org.osgi</groupId>
106       <artifactId>org.osgi.compendium</artifactId>
107       <version>5.0.0</version>
108     </dependency>
109
110     <dependency>
111       <groupId>org.apache.felix</groupId>
112       <artifactId>org.apache.felix.dependencymanager</artifactId>
113       <version>3.1.0</version>
114     </dependency>
115
116     <dependency>
117       <groupId>org.apache.commons</groupId>
118       <artifactId>commons-lang3</artifactId>
119       <version>3.4</version>
120     </dependency>
121
122     <dependency>
123       <groupId>org.opendaylight.controller</groupId>
124       <artifactId>sal</artifactId>
125       <version>0.7.0</version>
126     </dependency>
127
128     <dependency>
129       <groupId>org.opendaylight.snmp4sdn</groupId>
130       <artifactId>md-model</artifactId>
131       <version>${project.version}</version>
132     </dependency>
133
134     <dependency>
135       <groupId>org.opendaylight.snmp4sdn</groupId>
136       <artifactId>snmp4sdn</artifactId>
137       <version>${project.version}</version>
138     </dependency>
139
140     <dependency>
141       <groupId>org.opendaylight.snmp4sdn</groupId>
142       <artifactId>plugin-shell</artifactId>
143       <version>${project.version}</version>
144     </dependency>
145
146   </dependencies>
147
148   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
149
150   <distributionManagement>
151     <site>
152       <id>opendaylight-site</id>
153       <url>${nexus.site.url}/${project.artifactId}/</url>
154     </site>
155   </distributionManagement>
156
157 </project>