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