Release Neon
[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.11.2</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>org.opendaylight.controller</groupId>
39             <artifactId>sal-common-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.mdsal</groupId>
43             <artifactId>yang-binding</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.mdsal</groupId>
47             <artifactId>mdsal-binding-dom-codec</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>yang-model-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.yangtools</groupId>
55             <artifactId>yang-data-api</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.yangtools</groupId>
59             <artifactId>yang-common</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.yangtools</groupId>
63             <artifactId>concepts</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>com.google.guava</groupId>
67             <artifactId>guava</artifactId>
68         </dependency>
69         <!-- test scope dependencies -->
70         <dependency>
71             <groupId>${project.groupId}</groupId>
72             <artifactId>config-loader-impl</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77             <artifactId>config-loader-impl</artifactId>
78             <type>test-jar</type>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.mdsal</groupId>
83             <artifactId>mdsal-binding-dom-adapter</artifactId>
84             <scope>test</scope>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.controller</groupId>
88             <artifactId>sal-binding-broker-impl</artifactId>
89             <scope>test</scope>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.controller</groupId>
93             <artifactId>sal-binding-broker-impl</artifactId>
94             <type>test-jar</type>
95             <scope>test</scope>
96         </dependency>
97         <dependency>
98             <groupId>${project.groupId}</groupId>
99             <artifactId>testtool-util</artifactId>
100             <scope>test</scope>
101         </dependency>
102     </dependencies>
103
104     <build>
105         <plugins>
106             <plugin>
107                 <groupId>org.apache.maven.plugins</groupId>
108                 <artifactId>maven-jar-plugin</artifactId>
109                 <executions>
110                     <execution>
111                         <phase>package</phase>
112                         <goals>
113                             <goal>test-jar</goal>
114                         </goals>
115                     </execution>
116                 </executions>
117             </plugin>
118         </plugins>
119     </build>
120
121     <scm>
122         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
123         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
124         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
125         <tag>HEAD</tag>
126     </scm>
127 </project>