Bump versions by x.(y+1).z for next dev cycle
[bgpcep.git] / programming / 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>programming-controller-config</artifactId>
23     <version>0.9.0-SNAPSHOT</version>
24     <description>Controller Configuration files for Programming</description>
25     <packaging>jar</packaging>
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                 <groupId>org.codehaus.mojo</groupId>
44                 <artifactId>build-helper-maven-plugin</artifactId>
45                 <executions>
46                     <execution>
47                         <id>attach-artifacts</id>
48                         <goals>
49                             <goal>attach-artifact</goal>
50                         </goals>
51                         <phase>package</phase>
52                         <configuration>
53                             <artifacts>
54                                 <artifact>
55                                     <file>${project.build.directory}/classes/initial/30-programming.xml</file>
56                                     <type>xml</type>
57                                     <classifier>config</classifier>
58                                 </artifact>
59                             </artifacts>
60                         </configuration>
61                     </execution>
62                 </executions>
63             </plugin>
64         </plugins>
65     </build>
66
67     <scm>
68         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
69         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
70         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
71         <tag>HEAD</tag>
72     </scm>
73
74     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
75     <distributionManagement>
76         <site>
77             <id>opendaylight-site</id>
78             <url>${nexus.site.url}/${project.artifactId}/</url>
79         </site>
80     </distributionManagement>
81 </project>