a49b358a6b09d7acfeca9a0a68d3a4fd9fd8f73d
[neutron.git] / neutron-spi / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2018 Intel Corporation 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
12   <parent>
13     <groupId>org.opendaylight.neutron</groupId>
14     <artifactId>project-neutron-parent</artifactId>
15     <version>0.12.1-SNAPSHOT</version>
16     <relativePath>../parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.neutron</groupId>
20   <artifactId>neutron-spi</artifactId>
21   <version>0.12.1-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: neutron :: ${project.artifactId}</name>
26
27   <dependencies>
28     <dependency>
29       <groupId>org.opendaylight.neutron</groupId>
30       <artifactId>model</artifactId>
31       <version>${project.version}</version>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
35       <artifactId>rfc6991</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.mdsal.model</groupId>
39       <artifactId>yang-ext</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>sal-binding-api</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>sal-common-api</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>commons-net</groupId>
51       <artifactId>commons-net</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.slf4j</groupId>
55       <artifactId>slf4j-api</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>javax.xml.bind</groupId>
59       <artifactId>jaxb-api</artifactId>
60     </dependency>
61
62     <dependency>
63       <groupId>junit</groupId>
64       <artifactId>junit</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>javax.validation</groupId>
69       <artifactId>validation-api</artifactId>
70     </dependency>
71     <dependency>
72        <groupId>org.eclipse.persistence</groupId>
73        <artifactId>org.eclipse.persistence.moxy</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.glassfish</groupId>
77       <artifactId>javax.json</artifactId>
78     </dependency>
79   </dependencies>
80 </project>