Bump to odlparent-3.0.0 and yangtools-2.0.0
[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"
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>bgp-bmp-config-example</artifactId>
23     <version>0.9.0-SNAPSHOT</version>
24     <packaging>jar</packaging>
25     <description>Configuration files examples for BMP 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>**/odl-bmp-monitors-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/odl-bmp-monitors-config.xml</file>
71                                     <type>xml</type>
72                                     <classifier>odl-bmp-monitors-config</classifier>
73                                 </artifact>
74                             </artifacts>
75                         </configuration>
76                     </execution>
77                 </executions>
78             </plugin>
79             <plugin>
80                 <groupId>org.apache.maven.plugins</groupId>
81                 <artifactId>maven-checkstyle-plugin</artifactId>
82                 <configuration>
83                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
84                 </configuration>
85             </plugin>
86         </plugins>
87     </build>
88
89     <scm>
90         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
91         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
92         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
93         <tag>HEAD</tag>
94     </scm>
95 </project>