b6ea2b82efb662129c8271057c320dfb5c213523
[bgpcep.git] / pcep / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <project xmlns="http://maven.apache.org/POM/4.0.0" 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
6     <modelVersion>4.0.0</modelVersion>
7     <scm>
8         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
9         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
10         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
11         <tag>HEAD</tag>
12     </scm>
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>pcep-parent</artifactId>
16         <version>0.3.0-SNAPSHOT</version>
17     </parent>
18
19     <artifactId>pcep-impl</artifactId>
20     <description>PCE Protocol Implementation</description>
21     <packaging>bundle</packaging>
22     <name>${project.artifactId}</name>
23     <prerequisites>
24         <maven>3.0.4</maven>
25     </prerequisites>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>pcep-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>pcep-spi</artifactId>
35         </dependency>
36
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>concepts</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>framework</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>util</artifactId>
48         </dependency>
49
50         <dependency>
51             <groupId>io.netty</groupId>
52             <artifactId>netty-codec</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>io.netty</groupId>
56             <artifactId>netty-common</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>io.netty</groupId>
60             <artifactId>netty-transport</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>com.google.guava</groupId>
64             <artifactId>guava</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>com.google.code.findbugs</groupId>
68             <artifactId>jsr305</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.slf4j</groupId>
72             <artifactId>slf4j-api</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.yangtools.model</groupId>
76             <artifactId>ietf-inet-types</artifactId>
77         </dependency>
78
79         <!-- Test dependencies -->
80         <dependency>
81             <groupId>org.mockito</groupId>
82             <artifactId>mockito-core</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.yangtools</groupId>
86             <artifactId>mockito-configuration</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>${project.groupId}</groupId>
90             <artifactId>framework</artifactId>
91             <version>${project.version}</version>
92             <scope>test</scope>
93             <type>test-jar</type>
94         </dependency>
95         <dependency>
96             <groupId>junit</groupId>
97             <artifactId>junit</artifactId>
98         </dependency>
99     </dependencies>
100
101     <build>
102         <plugins>
103             <plugin>
104                 <groupId>org.apache.felix</groupId>
105                 <artifactId>maven-bundle-plugin</artifactId>
106                 <extensions>true</extensions>
107                 <configuration>
108                     <instructions>
109                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
110                         <Export-Package>
111                             org.opendaylight.protocol.pcep.impl.*,
112                         </Export-Package>
113                     </instructions>
114                 </configuration>
115             </plugin>
116             <plugin>
117                 <groupId>org.apache.maven.plugins</groupId>
118                 <artifactId>maven-jar-plugin</artifactId>
119                 <executions>
120                     <execution>
121                         <phase>package</phase>
122                         <goals>
123                             <goal>test-jar</goal>
124                         </goals>
125                     </execution>
126                 </executions>
127             </plugin>
128         </plugins>
129     </build>
130 </project>