824b7017ceb4a84da7d8edd8dc92271bbb4c2eb7
[bgpcep.git] / pcep / ietf-p2mp-te-lsp / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <groupId>org.opendaylight.bgpcep</groupId>
8         <artifactId>binding-parent</artifactId>
9         <version>0.21.2</version>
10         <relativePath>../../binding-parent</relativePath>
11     </parent>
12
13     <artifactId>pcep-ietf-p2mp-te-lsp</artifactId>
14     <description>PCE IETF Point-to-Multipoint Traffic Engineering Label Switched Paths</description>
15     <packaging>bundle</packaging>
16     <name>${project.artifactId}</name>
17
18     <dependencies>
19         <dependency>
20             <groupId>${project.groupId}</groupId>
21             <artifactId>pcep-api</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>${project.groupId}</groupId>
25             <artifactId>pcep-spi</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.yangtools</groupId>
29             <artifactId>concepts</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.mdsal.model</groupId>
33             <artifactId>yang-ext</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.yangtools</groupId>
37             <artifactId>yang-common</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>com.google.guava</groupId>
41             <artifactId>guava</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>io.netty</groupId>
45             <artifactId>netty-buffer</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>com.guicedee.services</groupId>
49             <artifactId>javax.inject</artifactId>
50             <optional>true</optional>
51         </dependency>
52         <dependency>
53             <groupId>org.osgi</groupId>
54             <artifactId>org.osgi.service.component.annotations</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.kohsuke.metainf-services</groupId>
58             <artifactId>metainf-services</artifactId>
59         </dependency>
60
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>util</artifactId>
64             <scope>test</scope>
65         </dependency>
66     </dependencies>
67
68     <build>
69         <plugins>
70             <plugin>
71                 <artifactId>maven-dependency-plugin</artifactId>
72                 <configuration>
73                     <ignoredUnusedDeclaredDependencies>
74                         <ignoredUnusedDeclaredDependency>org.opendaylight.mdsal.model:yang-ext</ignoredUnusedDeclaredDependency>
75                     </ignoredUnusedDeclaredDependencies>
76                 </configuration>
77             </plugin>
78         </plugins>
79     </build>
80
81     <scm>
82         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
83         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
84         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
85         <tag>HEAD</tag>
86     </scm>
87 </project>