Derive aggregators from odlparent-lite
[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.0-SNAPSHOT</version>
18         <relativePath/>
19     </parent>
20
21     <groupId>org.opendaylight.bgpcep</groupId>
22     <artifactId>bgp-controller-config</artifactId>
23     <version>0.7.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.7.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/31-bgp.xml</file>
56                                     <type>xml</type>
57                                     <classifier>config</classifier>
58                                 </artifact>
59                                 <artifact>
60                                     <file>${project.build.directory}/classes/initial/41-bgp-example.xml</file>
61                                     <type>xml</type>
62                                     <classifier>config-example</classifier>
63                                 </artifact>
64                                 <artifact>
65                                     <file>${project.build.directory}/classes/initial/32-bmp.xml</file>
66                                     <type>xml</type>
67                                     <classifier>bmp-config</classifier>
68                                 </artifact>
69                                 <artifact>
70                                     <file>${project.build.directory}/classes/initial/42-bmp-example.xml</file>
71                                     <type>xml</type>
72                                     <classifier>bmp-config-example</classifier>
73                                 </artifact>
74                                 <artifact>
75                                     <file>${project.build.directory}/classes/initial/protocols-config.xml</file>
76                                     <type>xml</type>
77                                     <classifier>bgp-initial-config</classifier>
78                                 </artifact>
79                                 <artifact>
80                                     <file>${project.build.directory}/classes/initial/network-topology-config.xml</file>
81                                     <type>xml</type>
82                                     <classifier>network-topology-initial-config</classifier>
83                                 </artifact>
84                             </artifacts>
85                         </configuration>
86                     </execution>
87                 </executions>
88             </plugin>
89         </plugins>
90     </build>
91
92     <scm>
93         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
94         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
95         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
96         <tag>HEAD</tag>
97     </scm>
98
99     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
100     <distributionManagement>
101         <site>
102             <id>opendaylight-site</id>
103             <url>${nexus.site.url}/${project.artifactId}/</url>
104         </site>
105     </distributionManagement>
106 </project>