Release Aluminium
[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.15.1</version>
16     <relativePath>../parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.neutron</groupId>
20   <artifactId>northbound-api</artifactId>
21   <version>0.15.1</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.12.1</version>
33         <type>pom</type>
34         <scope>import</scope>
35       </dependency>
36       <dependency>
37         <groupId>org.opendaylight.netconf</groupId>
38         <artifactId>netconf-artifacts</artifactId>
39         <version>1.9.1</version>
40         <type>pom</type>
41         <scope>import</scope>
42       </dependency>
43     </dependencies>
44   </dependencyManagement>
45
46   <dependencies>
47     <dependency>
48       <groupId>org.opendaylight.mdsal</groupId>
49       <artifactId>mdsal-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       <scope>provided</scope>
68       <optional>true</optional>
69     </dependency>
70     <dependency>
71       <groupId>javax.annotation</groupId>
72       <artifactId>javax.annotation-api</artifactId>
73       <scope>provided</scope>
74       <optional>true</optional>
75     </dependency>
76
77     <dependency>
78      <groupId>org.apache.aries.blueprint</groupId>
79      <artifactId>blueprint-maven-plugin-annotation</artifactId>
80      <optional>true</optional>
81    </dependency>
82     <dependency>
83       <groupId>org.opendaylight.aaa.web</groupId>
84       <artifactId>web-api</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.aaa.web</groupId>
88       <artifactId>servlet-api</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.netconf</groupId>
92       <artifactId>restconf-nb-bierman02</artifactId>
93       <!-- The following fails the classpath duplicate test in test-standalone -->
94       <exclusions>
95         <exclusion>
96           <groupId>io.netty</groupId>
97           <artifactId>netty-codec-http</artifactId>
98         </exclusion>
99       </exclusions>
100     </dependency>
101   </dependencies>
102   <build>
103     <plugins>
104       <plugin>
105         <groupId>org.apache.aries.blueprint</groupId>
106         <artifactId>blueprint-maven-plugin</artifactId>
107         <configuration>
108           <scanPaths>
109             <scanPath>org.opendaylight.neutron</scanPath>
110           </scanPaths>
111         </configuration>
112       </plugin>
113       <plugin>
114         <groupId>org.codehaus.mojo</groupId>
115         <artifactId>build-helper-maven-plugin</artifactId>
116         <executions>
117           <execution>
118             <id>attach-artifacts</id>
119             <goals>
120               <goal>attach-artifact</goal>
121             </goals>
122             <phase>package</phase>
123             <configuration>
124               <artifacts>
125                 <artifact>
126                   <file>${project.build.directory}/classes/initial/neutron-northbound-api-config.xml</file>
127                   <type>xml</type>
128                   <classifier>config</classifier>
129                 </artifact>
130               </artifacts>
131             </configuration>
132           </execution>
133         </executions>
134       </plugin>
135     </plugins>
136   </build>
137   <scm>
138     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
139     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
140     <tag>HEAD</tag>
141     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
142   </scm>
143 </project>