Drop obsolete Maven site configuration
[bgpcep.git] / pcep / segment-routing / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 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>binding-parent</artifactId>
17         <version>0.9.0-SNAPSHOT</version>
18         <relativePath>../../binding-parent</relativePath>
19     </parent>
20
21     <artifactId>pcep-segment-routing</artifactId>
22     <description>PCE Segment Routing model plugin</description>
23     <packaging>bundle</packaging>
24     <name>${project.artifactId}</name>
25
26     <dependencies>
27         <dependency>
28             <groupId>${project.groupId}</groupId>
29             <artifactId>util</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>${project.groupId}</groupId>
33             <artifactId>pcep-ietf-stateful07</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>pcep-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>pcep-spi</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>pcep-impl</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>rsvp-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>pcep-topology-api</artifactId>
54         </dependency>
55
56         <dependency>
57             <groupId>org.opendaylight.mdsal</groupId>
58             <artifactId>yang-binding</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.yangtools</groupId>
62             <artifactId>yang-common</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.yangtools</groupId>
66             <artifactId>concepts</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.mdsal.model</groupId>
70             <artifactId>ietf-inet-types-2013-07-15</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.mdsal.model</groupId>
74             <artifactId>ietf-topology</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.controller</groupId>
78             <artifactId>config-api</artifactId>
79         </dependency>
80
81         <dependency>
82             <groupId>io.netty</groupId>
83             <artifactId>netty-buffer</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>com.google.guava</groupId>
87             <artifactId>guava</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.slf4j</groupId>
91             <artifactId>slf4j-api</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.osgi</groupId>
95             <artifactId>org.osgi.core</artifactId>
96             <scope>provided</scope>
97         </dependency>
98         <!--test dependencies -->
99         <dependency>
100             <groupId>junit</groupId>
101             <artifactId>junit</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.controller</groupId>
105             <artifactId>config-manager</artifactId>
106             <type>test-jar</type>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.controller</groupId>
110             <artifactId>config-manager</artifactId>
111             <scope>test</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.controller</groupId>
115             <artifactId>config-util</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.yangtools</groupId>
119             <artifactId>mockito-configuration</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>${project.groupId}</groupId>
123             <artifactId>pcep-spi</artifactId>
124             <type>test-jar</type>
125             <scope>test</scope>
126         </dependency>
127         <dependency>
128             <groupId>${project.groupId}</groupId>
129             <artifactId>testtool-util</artifactId>
130             <scope>test</scope>
131         </dependency>
132         <dependency>
133             <groupId>org.opendaylight.controller</groupId>
134             <artifactId>sal-binding-broker-impl</artifactId>
135             <scope>test</scope>
136         </dependency>
137         <dependency>
138             <groupId>org.opendaylight.controller</groupId>
139             <artifactId>sal-binding-broker-impl</artifactId>
140             <scope>test</scope>
141             <type>test-jar</type>
142         </dependency>
143         <dependency>
144             <groupId>${project.groupId}</groupId>
145             <artifactId>pcep-topology-provider</artifactId>
146             <type>test-jar</type>
147             <scope>test</scope>
148         </dependency>
149         <dependency>
150             <groupId>${project.groupId}</groupId>
151             <artifactId>pcep-topology-provider</artifactId>
152             <scope>test</scope>
153         </dependency>
154     </dependencies>
155
156     <scm>
157         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
158         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
159         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
160         <tag>HEAD</tag>
161     </scm>
162 </project>