Release Nitrogen
[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 <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">
11
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.odlparent</groupId>
15         <artifactId>odlparent</artifactId>
16         <version>2.0.7</version>
17         <relativePath/>
18     </parent>
19
20     <groupId>org.opendaylight.bgpcep</groupId>
21     <artifactId>programming-controller-config</artifactId>
22     <version>0.8.3</version>
23     <description>Controller Configuration files for Programming</description>
24     <packaging>jar</packaging>
25     <name>${project.artifactId}</name>
26
27     <dependencyManagement>
28         <dependencies>
29             <dependency>
30                 <groupId>org.opendaylight.bgpcep</groupId>
31                 <artifactId>bgpcep-parent</artifactId>
32                 <version>0.8.3</version>
33                 <type>pom</type>
34                 <scope>import</scope>
35             </dependency>
36         </dependencies>
37     </dependencyManagement>
38
39     <build>
40         <plugins>
41             <plugin>
42                 <groupId>org.codehaus.mojo</groupId>
43                 <artifactId>build-helper-maven-plugin</artifactId>
44                 <executions>
45                     <execution>
46                         <id>attach-artifacts</id>
47                         <goals>
48                             <goal>attach-artifact</goal>
49                         </goals>
50                         <phase>package</phase>
51                         <configuration>
52                             <artifacts>
53                                 <artifact>
54                                     <file>${project.build.directory}/classes/initial/30-programming.xml</file>
55                                     <type>xml</type>
56                                     <classifier>config</classifier>
57                                 </artifact>
58                             </artifacts>
59                         </configuration>
60                     </execution>
61                 </executions>
62             </plugin>
63         </plugins>
64     </build>
65
66     <scm>
67         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
68         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
69         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
70         <tag>HEAD</tag>
71     </scm>
72
73     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
74     <distributionManagement>
75         <site>
76             <id>opendaylight-site</id>
77             <url>${nexus.site.url}/${project.artifactId}/</url>
78         </site>
79     </distributionManagement>
80 </project>