Release Nitrogen
[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 <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>bgp-controller-config</artifactId>
22     <version>0.8.3</version>
23     <packaging>jar</packaging>
24     <description>Controller Configuration files for BGP protocol</description>
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                 <artifactId>maven-remote-resources-plugin</artifactId>
43                 <executions>
44                     <execution>
45                         <goals>
46                             <goal>bundle</goal>
47                         </goals>
48                     </execution>
49                 </executions>
50                 <configuration>
51                     <includes>
52                         <include>**/network-topology-config.xml</include>
53                         <include>**/protocols-config.xml</include>
54                     </includes>
55                 </configuration>
56             </plugin>
57             <plugin>
58                 <groupId>org.codehaus.mojo</groupId>
59                 <artifactId>build-helper-maven-plugin</artifactId>
60                 <executions>
61                     <execution>
62                         <id>attach-artifacts</id>
63                         <goals>
64                             <goal>attach-artifact</goal>
65                         </goals>
66                         <phase>package</phase>
67                         <configuration>
68                             <artifacts>
69                                 <artifact>
70                                     <file>${project.build.directory}/classes/initial/31-bgp.xml</file>
71                                     <type>xml</type>
72                                     <classifier>config</classifier>
73                                 </artifact>
74                                 <artifact>
75                                     <file>${project.build.directory}/classes/initial/32-bmp.xml</file>
76                                     <type>xml</type>
77                                     <classifier>bmp-config</classifier>
78                                 </artifact>
79                                 <artifact>
80                                     <file>${project.build.directory}/classes/initial/42-bmp-example.xml</file>
81                                     <type>xml</type>
82                                     <classifier>bmp-config-example</classifier>
83                                 </artifact>
84                                 <artifact>
85                                     <file>${project.build.directory}/classes/initial/protocols-config.xml</file>
86                                     <type>xml</type>
87                                     <classifier>bgp-initial-config</classifier>
88                                 </artifact>
89                                 <artifact>
90                                     <file>${project.build.directory}/classes/initial/network-topology-config.xml</file>
91                                     <type>xml</type>
92                                     <classifier>network-topology-initial-config</classifier>
93                                 </artifact>
94                             </artifacts>
95                         </configuration>
96                     </execution>
97                 </executions>
98             </plugin>
99         </plugins>
100     </build>
101
102     <scm>
103         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
104         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
105         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
106         <tag>HEAD</tag>
107     </scm>
108
109     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
110     <distributionManagement>
111         <site>
112             <id>opendaylight-site</id>
113             <url>${nexus.site.url}/${project.artifactId}/</url>
114         </site>
115     </distributionManagement>
116 </project>