Merge "Clean up dependencies."
[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    <modelVersion>4.0.0</modelVersion>
13    <scm>
14       <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
15       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
16       <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
17       <tag>HEAD</tag>
18    </scm>
19    <parent>
20       <groupId>org.opendaylight.bgpcep</groupId>
21       <artifactId>pcep-parent</artifactId>
22       <version>0.3.1-SNAPSHOT</version>
23    </parent>
24    <artifactId>pcep-segment-routing</artifactId>
25    <description>PCE Segment Routing model plugin</description>
26    <packaging>bundle</packaging>
27    <name>${project.artifactId}</name>
28    <prerequisites>
29       <maven>3.0.4</maven>
30    </prerequisites>
31
32    <dependencies>
33       <dependency>
34          <groupId>${project.groupId}</groupId>
35          <artifactId>util</artifactId>
36       </dependency>
37       <dependency>
38          <groupId>${project.groupId}</groupId>
39          <artifactId>pcep-ietf-stateful07</artifactId>
40       </dependency>
41       <dependency>
42          <groupId>${project.groupId}</groupId>
43          <artifactId>pcep-api</artifactId>
44       </dependency>
45       <dependency>
46          <groupId>${project.groupId}</groupId>
47          <artifactId>pcep-spi</artifactId>
48       </dependency>
49       <dependency>
50          <groupId>${project.groupId}</groupId>
51          <artifactId>pcep-impl</artifactId>
52       </dependency>
53       <dependency>
54          <groupId>${project.groupId}</groupId>
55          <artifactId>rsvp-api</artifactId>
56       </dependency>
57       <dependency>
58          <groupId>${project.groupId}</groupId>
59          <artifactId>pcep-topology-api</artifactId>
60       </dependency>
61
62       <dependency>
63          <groupId>org.opendaylight.yangtools</groupId>
64          <artifactId>yang-binding</artifactId>
65       </dependency>
66       <dependency>
67          <groupId>org.opendaylight.yangtools</groupId>
68          <artifactId>yang-common</artifactId>
69       </dependency>
70       <dependency>
71          <groupId>org.opendaylight.yangtools.model</groupId>
72          <artifactId>yang-ext</artifactId>
73       </dependency>
74       <dependency>
75          <groupId>org.opendaylight.yangtools.model</groupId>
76          <artifactId>ietf-inet-types</artifactId>
77       </dependency>
78       <dependency>
79          <groupId>org.opendaylight.yangtools.model</groupId>
80          <artifactId>ietf-topology</artifactId>
81       </dependency>
82       <dependency>
83           <groupId>org.opendaylight.controller</groupId>
84           <artifactId>config-api</artifactId>
85       </dependency>
86
87       <dependency>
88           <groupId>io.netty</groupId>
89           <artifactId>netty-buffer</artifactId>
90       </dependency>
91       <dependency>
92          <groupId>com.google.guava</groupId>
93          <artifactId>guava</artifactId>
94       </dependency>
95       <dependency>
96          <groupId>org.slf4j</groupId>
97          <artifactId>slf4j-api</artifactId>
98       </dependency>
99       <dependency>
100          <groupId>org.osgi</groupId>
101          <artifactId>org.osgi.core</artifactId>
102          <scope>provided</scope>
103       </dependency>
104       <!--test dependencies -->
105       <dependency>
106          <groupId>junit</groupId>
107          <artifactId>junit</artifactId>
108       </dependency>
109       <dependency>
110          <groupId>org.opendaylight.controller</groupId>
111          <artifactId>config-manager</artifactId>
112          <type>test-jar</type>
113       </dependency>
114       <dependency>
115          <groupId>org.opendaylight.controller</groupId>
116          <artifactId>config-manager</artifactId>
117       </dependency>
118       <dependency>
119          <groupId>org.opendaylight.controller</groupId>
120          <artifactId>config-util</artifactId>
121       </dependency>
122       <dependency>
123          <groupId>org.opendaylight.yangtools</groupId>
124          <artifactId>mockito-configuration</artifactId>
125       </dependency>
126         <dependency>
127             <groupId>${project.groupId}</groupId>
128             <artifactId>pcep-spi</artifactId>
129             <type>test-jar</type>
130             <scope>test</scope>
131         </dependency>
132    </dependencies>
133
134    <build>
135       <plugins>
136          <plugin>
137             <groupId>org.opendaylight.yangtools</groupId>
138             <artifactId>yang-maven-plugin</artifactId>
139          </plugin>
140          <plugin>
141             <groupId>org.apache.felix</groupId>
142             <artifactId>maven-bundle-plugin</artifactId>
143             <extensions>true</extensions>
144             <configuration>
145                <instructions>
146                   <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
147                </instructions>
148             </configuration>
149          </plugin>
150       </plugins>
151    </build>
152 </project>