propagate datastore exceptions all the way to northbound
[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.11.0-SNAPSHOT</version>
16     <relativePath>../parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.neutron</groupId>
20   <artifactId>neutron-spi</artifactId>
21   <version>0.11.0-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.model</groupId>
35       <artifactId>ietf-inet-types-2013-07-15</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.mdsal.model</groupId>
39       <artifactId>ietf-yang-types-20130715</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.mdsal.model</groupId>
43       <artifactId>yang-ext</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>sal-binding-api</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>sal-common-api</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>commons-net</groupId>
55       <artifactId>commons-net</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.slf4j</groupId>
59       <artifactId>slf4j-api</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>junit</groupId>
63       <artifactId>junit</artifactId>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>javax.validation</groupId>
68       <artifactId>validation-api</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.eclipse.persistence</groupId>
72       <artifactId>org.eclipse.persistence.antlr</artifactId>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.eclipse.persistence</groupId>
77       <artifactId>org.eclipse.persistence.core</artifactId>
78       <scope>test</scope>
79     </dependency>
80     <dependency>
81        <groupId>org.eclipse.persistence</groupId>
82        <artifactId>org.eclipse.persistence.moxy</artifactId>
83        <scope>test</scope>
84     </dependency>
85   </dependencies>
86 </project>