Bump versions by x.y.(z+1)
[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.12.2-SNAPSHOT</version>
16     <relativePath>../../parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.neutron</groupId>
20   <artifactId>neutron-hostconfig-vpp</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.netconf</groupId>
31         <artifactId>netconf-artifacts</artifactId>
32         <version>1.6.2-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.slf4j</groupId>
56       <artifactId>slf4j-api</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.netconf</groupId>
60       <artifactId>odl-netconf-api</artifactId>
61       <type>xml</type>
62       <classifier>features</classifier>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.netconf</groupId>
66       <artifactId>sal-netconf-connector</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>sal-binding-broker-impl</artifactId>
71       <type>test-jar</type>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.controller</groupId>
76       <artifactId>sal-binding-broker-impl</artifactId>
77       <scope>test</scope>
78     </dependency>
79   </dependencies>
80   <build>
81     <plugins>
82       <plugin>
83           <groupId>org.codehaus.mojo</groupId>
84           <artifactId>build-helper-maven-plugin</artifactId>
85           <executions>
86               <execution>
87                   <id>attach-artifacts</id>
88                   <phase>package</phase>
89                   <goals>
90                       <goal>attach-artifact</goal>
91                   </goals>
92                   <configuration>
93                       <artifacts>
94                           <artifact>
95                               <file>${project.build.directory}/classes/config/startup.cfg</file>
96                               <type>cfg</type>
97                               <classifier>config</classifier>
98                           </artifact>
99                       </artifacts>
100                   </configuration>
101               </execution>
102           </executions>
103       </plugin>
104     </plugins>
105   </build>
106 </project>