Release bgpcep
[bgpcep.git] / pcep / topology / cli / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2016 Inocybe Technologies.  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
11 <project xmlns="http://maven.apache.org/POM/4.0.0" 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
14     <modelVersion>4.0.0</modelVersion>
15     <parent>
16         <groupId>org.opendaylight.bgpcep</groupId>
17         <artifactId>bgpcep-parent</artifactId>
18         <version>0.20.4</version>
19         <relativePath>../../../parent</relativePath>
20     </parent>
21
22     <artifactId>pcep-cli</artifactId>
23     <description>PCEP CLI</description>
24     <packaging>bundle</packaging>
25     <name>${project.artifactId}</name>
26
27     <properties>
28         <odlparent.dependency.enforce>false</odlparent.dependency.enforce>
29     </properties>
30
31     <dependencies>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>pcep-topology-api</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>pcep-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>pcep-ietf-stateful</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.yangtools</groupId>
46             <artifactId>yang-common</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.mdsal</groupId>
50             <artifactId>mdsal-binding-api</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.mdsal</groupId>
54             <artifactId>mdsal-common-api</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.mdsal.model</groupId>
58             <artifactId>ietf-topology</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.mdsal</groupId>
62             <artifactId>yang-binding</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.apache.karaf.shell</groupId>
66             <artifactId>org.apache.karaf.shell.console</artifactId>
67             <scope>provided</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.apache.karaf.shell</groupId>
71             <artifactId>org.apache.karaf.shell.core</artifactId>
72             <scope>provided</scope>
73         </dependency>
74         <dependency>
75             <groupId>com.google.guava</groupId>
76             <artifactId>guava</artifactId>
77         </dependency>
78         <!--Test dependencies-->
79         <dependency>
80             <groupId>org.opendaylight.mdsal</groupId>
81             <artifactId>mdsal-binding-dom-adapter</artifactId>
82             <type>test-jar</type>
83             <scope>test</scope>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.mdsal</groupId>
87             <artifactId>mdsal-binding-dom-adapter</artifactId>
88             <scope>test</scope>
89         </dependency>
90         <dependency>
91             <groupId>org.opendaylight.mdsal</groupId>
92             <artifactId>mdsal-binding-test-utils</artifactId>
93             <scope>test</scope>
94         </dependency>
95     </dependencies>
96
97     <build>
98         <plugins>
99             <plugin>
100                 <groupId>org.apache.felix</groupId>
101                 <artifactId>maven-bundle-plugin</artifactId>
102                 <extensions>true</extensions>
103                 <configuration>
104                     <instructions>
105                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
106                         <Karaf-Commands>*</Karaf-Commands>
107                     </instructions>
108                 </configuration>
109             </plugin>
110         </plugins>
111     </build>
112
113     <scm>
114         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
115         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
116         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
117         <tag>HEAD</tag>
118     </scm>
119 </project>