Release Nitrogen
[bgpcep.git] / pcep / 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>pcep-controller-config</artifactId>
22     <version>0.8.3</version>
23     <packaging>jar</packaging>
24     <description>Controller Configuration files for PCEP 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
40     <dependencies>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>programming-controller-config</artifactId>
44             <version>${project.version}</version>
45             <scope>provided</scope>
46         </dependency>
47     </dependencies>
48
49     <build>
50         <plugins>
51             <plugin>
52                 <groupId>org.codehaus.mojo</groupId>
53                 <artifactId>build-helper-maven-plugin</artifactId>
54                 <executions>
55                     <execution>
56                         <id>attach-artifacts</id>
57                         <goals>
58                             <goal>attach-artifact</goal>
59                         </goals>
60                         <phase>package</phase>
61                         <configuration>
62                             <artifacts>
63                                 <artifact>
64                                     <file>${project.build.directory}/classes/initial/32-pcep.xml</file>
65                                     <type>xml</type>
66                                     <classifier>config</classifier>
67                                 </artifact>
68                                 <artifact>
69                                     <file>${project.build.directory}/classes/initial/39-pcep-provider.xml</file>
70                                     <type>xml</type>
71                                     <classifier>config-provider</classifier>
72                                 </artifact>
73                             </artifacts>
74                         </configuration>
75                     </execution>
76                 </executions>
77             </plugin>
78         </plugins>
79     </build>
80
81     <scm>
82         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
83         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
84         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
85         <tag>HEAD</tag>
86     </scm>
87
88     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
89     <distributionManagement>
90         <site>
91             <id>opendaylight-site</id>
92             <url>${nexus.site.url}/${project.artifactId}/</url>
93         </site>
94     </distributionManagement>
95 </project>