36d9bc9565c680659a8424b5c42cb9c0d5a479c3
[bgpcep.git] / config-loader / routing-policy-config-loader / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2018 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 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xmlns="http://maven.apache.org/POM/4.0.0"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>bgpcep-parent</artifactId>
16         <version>0.10.0-SNAPSHOT</version>
17         <relativePath>../../parent</relativePath>
18     </parent>
19
20     <artifactId>routing-policy-config-loader</artifactId>
21     <description>BGPCEP BGP Openconfig Routing Policy configuration Loader</description>
22     <packaging>bundle</packaging>
23
24     <dependencies>
25         <dependency>
26             <groupId>${project.groupId}</groupId>
27             <artifactId>bgp-openconfig-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>${project.groupId}</groupId>
31             <artifactId>config-loader-spi</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.controller</groupId>
35             <artifactId>sal-binding-api</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>config-loader-impl</artifactId>
40             <scope>test</scope>
41         </dependency>
42         <dependency>
43             <groupId>${project.groupId}</groupId>
44             <artifactId>config-loader-impl</artifactId>
45             <type>test-jar</type>
46             <scope>test</scope>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.mdsal</groupId>
50             <artifactId>mdsal-binding-dom-adapter</artifactId>
51             <scope>test</scope>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.controller</groupId>
55             <artifactId>sal-binding-broker-impl</artifactId>
56             <scope>test</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.controller</groupId>
60             <artifactId>sal-binding-broker-impl</artifactId>
61             <type>test-jar</type>
62             <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>testtool-util</artifactId>
67             <scope>test</scope>
68         </dependency>
69         <!-- junit/mockito default -->
70         <dependency>
71             <groupId>org.mockito</groupId>
72             <artifactId>mockito-core</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>junit</groupId>
77             <artifactId>junit</artifactId>
78         </dependency>
79     </dependencies>
80
81     <build>
82         <plugins>
83             <plugin>
84                 <groupId>org.apache.maven.plugins</groupId>
85                 <artifactId>maven-jar-plugin</artifactId>
86                 <executions>
87                     <execution>
88                         <phase>package</phase>
89                         <goals>
90                             <goal>test-jar</goal>
91                         </goals>
92                     </execution>
93                 </executions>
94             </plugin>
95         </plugins>
96     </build>
97
98     <scm>
99         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
100         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
101         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
102         <tag>HEAD</tag>
103     </scm>
104 </project>