Bump versions by x.(y+1).z for next dev cycle
[bgpcep.git] / config-loader / topology-config-loader / 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
14     <modelVersion>4.0.0</modelVersion>
15     <parent>
16         <groupId>org.opendaylight.bgpcep</groupId>
17         <artifactId>bgpcep-parent</artifactId>
18         <version>0.10.0-SNAPSHOT</version>
19         <relativePath>../../parent</relativePath>
20     </parent>
21
22     <artifactId>topology-config-loader</artifactId>
23     <description>BGPCEP Topology Initial configuration Loader</description>
24     <packaging>bundle</packaging>
25     <name>${project.artifactId}</name>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>config-loader-spi</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.mdsal.model</groupId>
34             <artifactId>ietf-topology</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.controller</groupId>
38             <artifactId>sal-binding-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>config-loader-impl</artifactId>
43             <scope>test</scope>
44         </dependency>
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>config-loader-impl</artifactId>
48             <type>test-jar</type>
49             <scope>test</scope>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.mdsal</groupId>
53             <artifactId>mdsal-binding-dom-adapter</artifactId>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.controller</groupId>
58             <artifactId>sal-binding-broker-impl</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.controller</groupId>
63             <artifactId>sal-binding-broker-impl</artifactId>
64             <type>test-jar</type>
65             <scope>test</scope>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>testtool-util</artifactId>
70             <scope>test</scope>
71         </dependency>
72         <!-- junit/mockito default -->
73         <dependency>
74             <groupId>org.mockito</groupId>
75             <artifactId>mockito-core</artifactId>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>junit</groupId>
80             <artifactId>junit</artifactId>
81             <scope>test</scope>
82         </dependency>
83     </dependencies>
84
85     <build>
86         <plugins>
87             <plugin>
88                 <groupId>org.apache.maven.plugins</groupId>
89                 <artifactId>maven-checkstyle-plugin</artifactId>
90                 <configuration>
91                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
92                 </configuration>
93             </plugin>
94             <plugin>
95                 <groupId>org.codehaus.mojo</groupId>
96                 <artifactId>findbugs-maven-plugin</artifactId>
97                 <configuration>
98                     <failOnError>true</failOnError>
99                 </configuration>
100             </plugin>
101         </plugins>
102     </build>
103
104     <scm>
105         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
106         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
107         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
108         <tag>HEAD</tag>
109     </scm>
110 </project>