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