Add missing license notice
[neutron.git] / neutron-hostconfig / vpp / 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-hostconfig-vpp</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   <properties>
27     <netconf.version>1.5.0-SNAPSHOT</netconf.version>
28   </properties>
29   <dependencyManagement>
30     <dependencies>
31       <dependency>
32         <groupId>org.opendaylight.netconf</groupId>
33         <artifactId>netconf-artifacts</artifactId>
34         <version>${netconf.version}</version>
35         <type>pom</type>
36         <scope>import</scope>
37       </dependency>
38     </dependencies>
39   </dependencyManagement>
40   <dependencies>
41     <dependency>
42       <groupId>org.opendaylight.neutron</groupId>
43       <artifactId>neutron-spi</artifactId>
44       <version>${project.version}</version>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.neutron</groupId>
48       <artifactId>model</artifactId>
49       <version>${project.version}</version>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.neutron</groupId>
53       <artifactId>neutron-hostconfig-utils</artifactId>
54       <version>${project.version}</version>
55     </dependency>
56     <dependency>
57       <groupId>org.osgi</groupId>
58       <artifactId>org.osgi.core</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.slf4j</groupId>
62       <artifactId>slf4j-api</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.netconf</groupId>
66       <artifactId>odl-netconf-api</artifactId>
67       <version>${netconf.version}</version>
68       <type>xml</type>
69       <classifier>features</classifier>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.netconf</groupId>
73       <artifactId>sal-netconf-connector</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.controller</groupId>
77       <artifactId>sal-binding-broker-impl</artifactId>
78       <type>test-jar</type>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.controller</groupId>
83       <artifactId>sal-binding-broker-impl</artifactId>
84       <scope>test</scope>
85     </dependency>
86   </dependencies>
87   <build>
88     <plugins>
89       <plugin>
90           <groupId>org.codehaus.mojo</groupId>
91           <artifactId>build-helper-maven-plugin</artifactId>
92           <executions>
93               <execution>
94                   <id>attach-artifacts</id>
95                   <phase>package</phase>
96                   <goals>
97                       <goal>attach-artifact</goal>
98                   </goals>
99                   <configuration>
100                       <artifacts>
101                           <artifact>
102                               <file>${project.build.directory}/classes/config/startup.cfg</file>
103                               <type>cfg</type>
104                               <classifier>config</classifier>
105                           </artifact>
106                       </artifacts>
107                   </configuration>
108               </execution>
109           </executions>
110       </plugin>
111     </plugins>
112   </build>
113   <scm>
114     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
115     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
116     <tag>HEAD</tag>
117     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
118   </scm>
119 </project>