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