Bump versions by x.y.(z+1)
[bgpcep.git] / bmp / bmp-config-example / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2017 AT&T Intellectual Property.
4   ~ All rights reserved.
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 <!-- vi: set et smarttab sw=4 tabstop=4: -->
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     <modelVersion>4.0.0</modelVersion>
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>odlparent</artifactId>
15         <version>3.1.7</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.bgpcep</groupId>
20     <artifactId>bgp-bmp-config-example</artifactId>
21     <version>0.10.4-SNAPSHOT</version>
22     <packaging>jar</packaging>
23     <description>Configuration files examples for BMP protocol</description>
24     <name>${project.artifactId}</name>
25
26     <dependencyManagement>
27         <dependencies>
28             <dependency>
29                 <groupId>org.opendaylight.bgpcep</groupId>
30                 <artifactId>bgpcep-parent</artifactId>
31                 <version>${project.version}</version>
32                 <type>pom</type>
33                 <scope>import</scope>
34             </dependency>
35         </dependencies>
36     </dependencyManagement>
37
38     <build>
39         <plugins>
40             <plugin>
41                 <artifactId>maven-remote-resources-plugin</artifactId>
42                 <executions>
43                     <execution>
44                         <goals>
45                             <goal>bundle</goal>
46                         </goals>
47                     </execution>
48                 </executions>
49                 <configuration>
50                     <includes>
51                         <include>**/odl-bmp-monitors-config.xml</include>
52                     </includes>
53                 </configuration>
54             </plugin>
55             <plugin>
56                 <groupId>org.codehaus.mojo</groupId>
57                 <artifactId>build-helper-maven-plugin</artifactId>
58                 <executions>
59                     <execution>
60                         <id>attach-artifacts</id>
61                         <goals>
62                             <goal>attach-artifact</goal>
63                         </goals>
64                         <phase>package</phase>
65                         <configuration>
66                             <artifacts>
67                                 <artifact>
68                                     <file>${project.build.directory}/classes/initial/odl-bmp-monitors-config.xml</file>
69                                     <type>xml</type>
70                                     <classifier>odl-bmp-monitors-config</classifier>
71                                 </artifact>
72                             </artifacts>
73                         </configuration>
74                     </execution>
75                 </executions>
76             </plugin>
77         </plugins>
78     </build>
79
80     <scm>
81         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
82         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
83         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
84         <tag>HEAD</tag>
85     </scm>
86 </project>