BGPCEP-710: Create Network Topology Loader
[bgpcep.git] / config-loader / config-loader-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2016 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 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          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.bgpcep</groupId>
16         <artifactId>config-parent</artifactId>
17         <version>0.9.0-SNAPSHOT</version>
18         <relativePath>../../config-parent</relativePath>
19     </parent>
20
21     <artifactId>config-loader-impl</artifactId>
22     <description>BGPCEP Initial configuration Loader</description>
23     <packaging>bundle</packaging>
24     <name>${project.artifactId}</name>
25
26     <dependencies>
27         <dependency>
28             <groupId>${project.groupId}</groupId>
29             <artifactId>config-loader-spi</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.yangtools</groupId>
33             <artifactId>yang-data-codec-xml</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.mdsal</groupId>
37             <artifactId>mdsal-dom-api</artifactId>
38         </dependency>
39         <!-- test scope dependencies -->
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>bgp-openconfig-api</artifactId>
43             <scope>test</scope>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.mdsal.model</groupId>
47             <artifactId>ietf-inet-types-2013-07-15</artifactId>
48             <scope>test</scope>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.mdsal.model</groupId>
52             <artifactId>ietf-yang-types-20130715</artifactId>
53             <scope>test</scope>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.mdsal.model</groupId>
57             <artifactId>ietf-interfaces</artifactId>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>junit</groupId>
62             <artifactId>junit</artifactId>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.mockito</groupId>
67             <artifactId>mockito-core</artifactId>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.yangtools</groupId>
72             <artifactId>mockito-configuration</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.mdsal</groupId>
77             <artifactId>mdsal-binding-dom-adapter</artifactId>
78             <scope>test</scope>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.yangtools</groupId>
82             <artifactId>yang-test-util</artifactId>
83             <scope>test</scope>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.controller</groupId>
87             <artifactId>sal-binding-broker-impl</artifactId>
88             <scope>test</scope>
89             <type>test-jar</type>
90         </dependency>
91     </dependencies>
92
93     <build>
94         <plugins>
95             <plugin>
96                 <groupId>org.apache.maven.plugins</groupId>
97                 <artifactId>maven-jar-plugin</artifactId>
98                 <executions>
99                     <execution>
100                         <phase>package</phase>
101                         <goals>
102                             <goal>test-jar</goal>
103                         </goals>
104                     </execution>
105                 </executions>
106             </plugin>
107             <plugin>
108                 <groupId>org.apache.maven.plugins</groupId>
109                 <artifactId>maven-checkstyle-plugin</artifactId>
110                 <configuration>
111                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
112                 </configuration>
113             </plugin>
114             <plugin>
115                 <groupId>org.codehaus.mojo</groupId>
116                 <artifactId>findbugs-maven-plugin</artifactId>
117                 <configuration>
118                     <failOnError>true</failOnError>
119                 </configuration>
120             </plugin>
121         </plugins>
122     </build>
123
124     <scm>
125         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
126         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
127         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
128         <tag>HEAD</tag>
129     </scm>
130
131     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
132     <distributionManagement>
133         <site>
134             <id>opendaylight-site</id>
135             <url>${nexus.site.url}/${project.artifactId}/</url>
136         </site>
137     </distributionManagement>
138 </project>