Bump versions by x.(y+1).z for next dev cycle
[bgpcep.git] / bgp / controller-config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10
11 <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">
12
13     <modelVersion>4.0.0</modelVersion>
14     <parent>
15         <groupId>org.opendaylight.odlparent</groupId>
16         <artifactId>odlparent</artifactId>
17         <version>2.0.4</version>
18         <relativePath/>
19     </parent>
20
21     <groupId>org.opendaylight.bgpcep</groupId>
22     <artifactId>bgp-controller-config</artifactId>
23     <version>0.9.0-SNAPSHOT</version>
24     <packaging>jar</packaging>
25     <description>Controller Configuration files for BGP protocol</description>
26     <name>${project.artifactId}</name>
27
28     <dependencyManagement>
29         <dependencies>
30             <dependency>
31                 <groupId>org.opendaylight.bgpcep</groupId>
32                 <artifactId>bgpcep-parent</artifactId>
33                 <version>0.9.0-SNAPSHOT</version>
34                 <type>pom</type>
35                 <scope>import</scope>
36             </dependency>
37         </dependencies>
38     </dependencyManagement>
39
40     <build>
41         <plugins>
42             <plugin>
43                 <artifactId>maven-remote-resources-plugin</artifactId>
44                 <executions>
45                     <execution>
46                         <goals>
47                             <goal>bundle</goal>
48                         </goals>
49                     </execution>
50                 </executions>
51                 <configuration>
52                     <includes>
53                         <include>**/network-topology-config.xml</include>
54                         <include>**/protocols-config.xml</include>
55                     </includes>
56                 </configuration>
57             </plugin>
58             <plugin>
59                 <groupId>org.codehaus.mojo</groupId>
60                 <artifactId>build-helper-maven-plugin</artifactId>
61                 <executions>
62                     <execution>
63                         <id>attach-artifacts</id>
64                         <goals>
65                             <goal>attach-artifact</goal>
66                         </goals>
67                         <phase>package</phase>
68                         <configuration>
69                             <artifacts>
70                                 <artifact>
71                                     <file>${project.build.directory}/classes/initial/31-bgp.xml</file>
72                                     <type>xml</type>
73                                     <classifier>config</classifier>
74                                 </artifact>
75                                 <artifact>
76                                     <file>${project.build.directory}/classes/initial/32-bmp.xml</file>
77                                     <type>xml</type>
78                                     <classifier>bmp-config</classifier>
79                                 </artifact>
80                                 <artifact>
81                                     <file>${project.build.directory}/classes/initial/42-bmp-example.xml</file>
82                                     <type>xml</type>
83                                     <classifier>bmp-config-example</classifier>
84                                 </artifact>
85                                 <artifact>
86                                     <file>${project.build.directory}/classes/initial/protocols-config.xml</file>
87                                     <type>xml</type>
88                                     <classifier>bgp-initial-config</classifier>
89                                 </artifact>
90                                 <artifact>
91                                     <file>${project.build.directory}/classes/initial/network-topology-config.xml</file>
92                                     <type>xml</type>
93                                     <classifier>network-topology-initial-config</classifier>
94                                 </artifact>
95                             </artifacts>
96                         </configuration>
97                     </execution>
98                 </executions>
99             </plugin>
100         </plugins>
101     </build>
102
103     <scm>
104         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
105         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
106         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
107         <tag>HEAD</tag>
108     </scm>
109
110     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
111     <distributionManagement>
112         <site>
113             <id>opendaylight-site</id>
114             <url>${nexus.site.url}/${project.artifactId}/</url>
115         </site>
116     </distributionManagement>
117 </project>