Bug-1180: Segment Routing parsers/serializers
[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>pcep-ietf-stateful07</artifactId>
36       </dependency>
37          <dependency>
38          <groupId>${project.groupId}</groupId>
39          <artifactId>pcep-spi-config</artifactId>
40       </dependency>
41       <!--test dependencies -->
42       <dependency>
43          <groupId>junit</groupId>
44          <artifactId>junit</artifactId>
45       </dependency>
46       <dependency>
47          <groupId>org.opendaylight.controller</groupId>
48          <artifactId>config-manager</artifactId>
49          <type>test-jar</type>
50       </dependency>
51       <dependency>
52          <groupId>org.opendaylight.controller</groupId>
53          <artifactId>config-manager</artifactId>
54       </dependency>
55       <dependency>
56          <groupId>org.opendaylight.controller</groupId>
57          <artifactId>config-util</artifactId>
58       </dependency>
59       <dependency>
60          <groupId>org.opendaylight.yangtools</groupId>
61          <artifactId>mockito-configuration</artifactId>
62       </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>pcep-spi-config</artifactId>
66             <type>test-jar</type>
67             <scope>test</scope>
68         </dependency>
69    </dependencies>
70
71    <build>
72       <plugins>
73          <plugin>
74             <groupId>org.opendaylight.yangtools</groupId>
75             <artifactId>yang-maven-plugin</artifactId>
76          </plugin>
77          <plugin>
78             <groupId>org.apache.felix</groupId>
79             <artifactId>maven-bundle-plugin</artifactId>
80             <extensions>true</extensions>
81             <configuration>
82                <instructions>
83                   <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
84                </instructions>
85             </configuration>
86          </plugin>
87       </plugins>
88    </build>
89 </project>