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