Bump versions to 0.20.5-SNAPSHOT
[bgpcep.git] / bgp / extensions / parent / 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
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     <modelVersion>4.0.0</modelVersion>
14     <parent>
15         <groupId>org.opendaylight.bgpcep</groupId>
16         <artifactId>binding-parent</artifactId>
17         <version>0.20.5-SNAPSHOT</version>
18         <relativePath>../../../binding-parent</relativePath>
19     </parent>
20
21     <artifactId>bgp-extension-parent</artifactId>
22     <version>0.20.5-SNAPSHOT</version>
23     <packaging>pom</packaging>
24     <description>BGP Extensions Parent</description>
25     <name>${project.artifactId}</name>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>bgp-parser-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>bgp-parser-spi</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>bgp-rib-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>bgp-rib-spi</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>bgp-openconfig-api</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>bgp-openconfig-spi</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>bgp-bmp-api</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>bgp-concepts</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>util</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.yangtools</groupId>
66             <artifactId>concepts</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.yangtools</groupId>
70             <artifactId>yang-common</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.yangtools</groupId>
74             <artifactId>yang-data-api</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.mdsal</groupId>
78             <artifactId>mdsal-binding-dom-codec-api</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
82             <artifactId>rfc6991-ietf-inet-types</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.mdsal</groupId>
86             <artifactId>mdsal-dom-api</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>io.netty</groupId>
90             <artifactId>netty-buffer</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>com.google.guava</groupId>
94             <artifactId>guava</artifactId>
95         </dependency>
96
97         <!-- test scope dependencies -->
98         <dependency>
99             <groupId>${project.groupId}</groupId>
100             <artifactId>bgp-rib-spi</artifactId>
101             <type>test-jar</type>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.yangtools</groupId>
106             <artifactId>yang-data-tree-spi</artifactId>
107             <scope>test</scope>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.mdsal</groupId>
111             <artifactId>mdsal-binding-test-utils</artifactId>
112             <scope>test</scope>
113         </dependency>
114         <dependency>
115             <groupId>org.opendaylight.mdsal</groupId>
116             <artifactId>mdsal-binding-dom-adapter</artifactId>
117             <scope>test</scope>
118         </dependency>
119         <dependency>
120             <groupId>org.opendaylight.mdsal</groupId>
121             <artifactId>mdsal-binding-dom-adapter</artifactId>
122             <scope>test</scope>
123             <type>test-jar</type>
124         </dependency>
125     </dependencies>
126
127     <build>
128         <plugins>
129             <plugin>
130                 <artifactId>maven-dependency-plugin</artifactId>
131                 <configuration>
132                     <ignoredUsedUndeclaredDependencies>
133                         <ignoredUsedUndeclaredDependency>org.opendaylight.yangtools:yang-data-tree-api</ignoredUsedUndeclaredDependency>
134                     </ignoredUsedUndeclaredDependencies>
135                     <ignoredNonTestScopedDependencies>
136                         <ignoredNonTestScopedDependencies>org.opendaylight.yangtools:yang-data-tree-api</ignoredNonTestScopedDependencies>
137                         <ignoredNonTestScopedDependencies>org.opendaylight.yangtools:yang-data-impl</ignoredNonTestScopedDependencies>
138                         <ignoredNonTestScopedDependencies>org.opendaylight.bgpcep:concepts</ignoredNonTestScopedDependencies>
139                     </ignoredNonTestScopedDependencies>
140                     <ignoredUnusedDeclaredDependencies combine.children="append">
141                         <ignoredUnusedDeclaredDependency>org.opendaylight.mdsal.model:yang-ext</ignoredUnusedDeclaredDependency>
142                         <ignoredUnusedDeclaredDependency>org.opendaylight.bgpcep:bgp-bmp-api</ignoredUnusedDeclaredDependency>
143                     </ignoredUnusedDeclaredDependencies>
144                 </configuration>
145             </plugin>
146         </plugins>
147     </build>
148 </project>