Bump to odlparent-3.0.0 and yangtools-2.0.0
[bgpcep.git] / pcep / config-example / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
4   ~
5   ~ This program and the accompanying materials are made available under the
6   ~ terms of the Eclipse Public License v1.0 which accompanies this distribution,
7   ~ and is available at http://www.eclipse.org/legal/epl-v10.html
8   -->
9
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13     <modelVersion>4.0.0</modelVersion>
14     <parent>
15         <groupId>org.opendaylight.odlparent</groupId>
16         <artifactId>odlparent</artifactId>
17         <version>3.0.2</version>
18         <relativePath/>
19     </parent>
20
21     <groupId>org.opendaylight.bgpcep</groupId>
22     <artifactId>pcep-config-example</artifactId>
23     <version>0.9.0-SNAPSHOT</version>
24     <packaging>jar</packaging>
25     <description>Configuration files example 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.9.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                 <artifactId>maven-remote-resources-plugin</artifactId>
44                 <executions>
45                     <execution>
46                         <goals>
47                             <goal>bundle</goal>
48                         </goals>
49                     </execution>
50                 </executions>
51                 <configuration>
52                     <includes>
53                         <include>**/network-topology-pcep-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/network-topology-pcep-config.xml</file>
71                                     <type>xml</type>
72                                     <classifier>network-topology-pcep-initial-config</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 </project>