Release Sodium
[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.12.1</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.mdsal</groupId>
35             <artifactId>mdsal-binding-api</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.mdsal</groupId>
39             <artifactId>mdsal-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>concepts</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>com.google.guava</groupId>
63             <artifactId>guava</artifactId>
64         </dependency>
65         <!-- test scope dependencies -->
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>config-loader-impl</artifactId>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>config-loader-impl</artifactId>
74             <type>test-jar</type>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.mdsal</groupId>
79             <artifactId>mdsal-binding-dom-adapter</artifactId>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.mdsal</groupId>
84             <artifactId>mdsal-binding-dom-adapter</artifactId>
85             <type>test-jar</type>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>${project.groupId}</groupId>
90             <artifactId>testtool-util</artifactId>
91             <scope>test</scope>
92         </dependency>
93     </dependencies>
94
95     <build>
96         <plugins>
97             <plugin>
98                 <groupId>org.apache.maven.plugins</groupId>
99                 <artifactId>maven-jar-plugin</artifactId>
100                 <executions>
101                     <execution>
102                         <phase>package</phase>
103                         <goals>
104                             <goal>test-jar</goal>
105                         </goals>
106                     </execution>
107                 </executions>
108             </plugin>
109         </plugins>
110     </build>
111
112     <scm>
113         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
114         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
115         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
116         <tag>HEAD</tag>
117     </scm>
118 </project>