deb3efd5751c680fd26dc31cddeab88000d238ba
[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         <parent>
7                 <groupId>org.opendaylight.bgpcep</groupId>
8                 <artifactId>pcep-parent</artifactId>
9                 <version>0.3.0-SNAPSHOT</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>pcep-impl</artifactId>
14         <description>PCE Protocol Implementation</description>
15         <packaging>bundle</packaging>
16         <name>${project.artifactId}</name>
17         <prerequisites>
18                 <maven>3.0.4</maven>
19         </prerequisites>
20
21         <dependencies>
22                 <dependency>
23                         <groupId>${project.groupId}</groupId>
24                         <artifactId>pcep-api</artifactId>
25                 </dependency>
26                 <dependency>
27                         <groupId>${project.groupId}</groupId>
28                         <artifactId>pcep-spi</artifactId>
29         </dependency>
30
31                 <dependency>
32                         <groupId>${project.groupId}</groupId>
33                         <artifactId>concepts</artifactId>
34                 </dependency>
35                 <dependency>
36                         <groupId>${project.groupId}</groupId>
37                         <artifactId>framework</artifactId>
38                 </dependency>
39                 <dependency>
40                         <groupId>${project.groupId}</groupId>
41                         <artifactId>util</artifactId>
42         </dependency>
43
44         <dependency>
45                         <groupId>io.netty</groupId>
46                         <artifactId>netty-codec</artifactId>
47                 </dependency>
48         <dependency>
49                         <groupId>io.netty</groupId>
50                         <artifactId>netty-common</artifactId>
51                 </dependency>
52         <dependency>
53                         <groupId>io.netty</groupId>
54                         <artifactId>netty-transport</artifactId>
55                 </dependency>
56                 <dependency>
57                         <groupId>com.google.guava</groupId>
58                         <artifactId>guava</artifactId>
59                 </dependency>
60                 <dependency>
61                         <groupId>com.google.code.findbugs</groupId>
62                         <artifactId>jsr305</artifactId>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.slf4j</groupId>
66                         <artifactId>slf4j-api</artifactId>
67                 </dependency>
68         <dependency>
69             <groupId>org.opendaylight.yangtools.model</groupId>
70             <artifactId>ietf-inet-types</artifactId>
71             <version>2010.09.24-SNAPSHOT</version>
72         </dependency>
73
74         <!-- Test dependencies -->
75                 <dependency>
76                         <groupId>org.mockito</groupId>
77                         <artifactId>mockito-core</artifactId>
78                 </dependency>
79                 <dependency>
80                         <groupId>${project.groupId}</groupId>
81                         <artifactId>mockito-configuration</artifactId>
82                 </dependency>
83                 <dependency>
84                         <groupId>${project.groupId}</groupId>
85                         <artifactId>framework</artifactId>
86                         <version>${project.version}</version>
87                         <scope>test</scope>
88                         <type>test-jar</type>
89                 </dependency>
90         <dependency>
91             <groupId>junit</groupId>
92             <artifactId>junit</artifactId>
93         </dependency>
94         </dependencies>
95
96         <build>
97                 <plugins>
98                         <plugin>
99                                 <groupId>org.apache.felix</groupId>
100                                 <artifactId>maven-bundle-plugin</artifactId>
101                                 <version>${maven.bundle.version}</version>
102                                 <extensions>true</extensions>
103                                 <configuration>
104                                         <instructions>
105                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
106                                                 <Private-Package>
107                                                         org.opendaylight.protocol.pcep.impl.*,
108                                                 </Private-Package>
109                                         </instructions>
110                                 </configuration>
111                         </plugin>
112                         <plugin>
113                                 <groupId>org.apache.maven.plugins</groupId>
114                                 <artifactId>maven-jar-plugin</artifactId>
115                                 <version>2.4</version>
116                                 <executions>
117                                         <execution>
118                                                 <phase>package</phase>
119                                                 <goals>
120                                                         <goal>test-jar</goal>
121                                                 </goals>
122                                         </execution>
123                                 </executions>
124                         </plugin>
125                 </plugins>
126         </build>
127
128         <distributionManagement>
129                 <site>
130                         <id>${project.artifactId}</id>
131                         <name>PCEP-IMPL Module site</name>
132                         <url>${basedir}/target/site/${project.artifactId}</url>
133                 </site>
134         </distributionManagement>
135
136 </project>