Bump upstream versions
[neutron.git] / northbound-api / 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.17.0-SNAPSHOT</version>
16     <relativePath>../parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.neutron</groupId>
20   <artifactId>northbound-api</artifactId>
21   <version>0.17.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.mdsal</groupId>
30       <artifactId>mdsal-common-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>com.webcohesion.enunciate</groupId>
34       <artifactId>enunciate-core-annotations</artifactId>
35     </dependency>
36     <dependency>
37         <groupId>javax.validation</groupId>
38         <artifactId>validation-api</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.neutron</groupId>
42       <artifactId>neutron-spi</artifactId>
43       <version>${project.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>com.guicedee.services</groupId>
47       <artifactId>javax.inject</artifactId>
48       <optional>true</optional>
49     </dependency>
50     <dependency>
51       <groupId>javax.annotation</groupId>
52       <artifactId>javax.annotation-api</artifactId>
53       <scope>provided</scope>
54       <optional>true</optional>
55     </dependency>
56
57     <dependency>
58      <groupId>org.apache.aries.blueprint</groupId>
59      <artifactId>blueprint-maven-plugin-annotation</artifactId>
60      <optional>true</optional>
61    </dependency>
62     <dependency>
63       <groupId>org.opendaylight.aaa.web</groupId>
64       <artifactId>web-api</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.aaa.web</groupId>
68       <artifactId>servlet-api</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.netconf</groupId>
72       <artifactId>restconf-nb-bierman02</artifactId>
73       <!-- The following fails the classpath duplicate test in test-standalone -->
74       <exclusions>
75         <exclusion>
76           <groupId>io.netty</groupId>
77           <artifactId>netty-codec-http</artifactId>
78         </exclusion>
79       </exclusions>
80     </dependency>
81   </dependencies>
82   <build>
83     <plugins>
84       <plugin>
85         <groupId>org.apache.aries.blueprint</groupId>
86         <artifactId>blueprint-maven-plugin</artifactId>
87         <configuration>
88           <scanPaths>
89             <scanPath>org.opendaylight.neutron</scanPath>
90           </scanPaths>
91         </configuration>
92       </plugin>
93       <plugin>
94         <groupId>org.codehaus.mojo</groupId>
95         <artifactId>build-helper-maven-plugin</artifactId>
96         <executions>
97           <execution>
98             <id>attach-artifacts</id>
99             <goals>
100               <goal>attach-artifact</goal>
101             </goals>
102             <phase>package</phase>
103             <configuration>
104               <artifacts>
105                 <artifact>
106                   <file>${project.build.directory}/classes/initial/neutron-northbound-api-config.xml</file>
107                   <type>xml</type>
108                   <classifier>config</classifier>
109                 </artifact>
110               </artifacts>
111             </configuration>
112           </execution>
113         </executions>
114       </plugin>
115     </plugins>
116   </build>
117   <scm>
118     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
119     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
120     <tag>HEAD</tag>
121     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
122   </scm>
123 </project>