f8178f9848ef6e5aa05708637062cecabe6f1fd5
[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.2.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                         <version>${project.version}</version>
26                 </dependency>
27                 <dependency>
28                         <groupId>${project.groupId}</groupId>
29                         <artifactId>framework</artifactId>
30                         <version>${project.version}</version>
31                 </dependency>
32                 <dependency>
33                         <groupId>${project.groupId}</groupId>
34                         <artifactId>util</artifactId>
35                         <version>${project.version}</version>
36                 </dependency>
37                 <dependency>
38                         <groupId>${project.groupId}</groupId>
39                         <artifactId>concepts</artifactId>
40                         <version>${project.version}</version>
41                 </dependency>
42                 <dependency>
43                         <groupId>com.google.guava</groupId>
44                         <artifactId>guava</artifactId>
45                         <version>${guava.version}</version>
46                 </dependency>
47                 <dependency>
48                         <groupId>org.slf4j</groupId>
49                         <artifactId>slf4j-api</artifactId>
50                         <version>${slf4j.version}</version>
51                 </dependency>
52                 <dependency>
53                         <groupId>org.mockito</groupId>
54                         <artifactId>mockito-core</artifactId>
55             <version>${mockito.version}</version>
56                         <scope>test</scope>
57                 </dependency>
58                 <dependency>
59                         <groupId>${project.groupId}</groupId>
60                         <artifactId>mockito-configuration</artifactId>
61                         <version>${project.version}</version>
62                         <scope>test</scope>
63                 </dependency>
64                 <dependency>
65                         <groupId>${project.groupId}</groupId>
66                         <artifactId>framework</artifactId>
67                         <version>${project.version}</version>
68                         <scope>test</scope>
69                         <type>test-jar</type>
70                 </dependency>
71         </dependencies>
72
73         <build>
74                 <plugins>
75                         <plugin>
76                                 <groupId>org.apache.felix</groupId>
77                                 <artifactId>maven-bundle-plugin</artifactId>
78                                 <version>${maven.bundle.version}</version>
79                                 <extensions>true</extensions>
80                                 <configuration>
81                                         <instructions>
82                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
83                                                 <Import-Package>
84                                                         org.opendaylight.protocol.concepts,
85                                                         org.opendaylight.protocol.framework,
86                                                         org.opendaylight.protocol.concepts,
87                                                         com.google.common.base,
88                                                         com.google.common.collect,
89                                                         com.google.common.primitives,
90                                                         javax.annotation,
91                                                         javax.management,
92                             javax.net.ssl,
93                                                         org.opendaylight.protocol.pcep,
94                                                         org.opendaylight.protocol.pcep.concepts,
95                                                         org.opendaylight.protocol.pcep.message,
96                                                         org.opendaylight.protocol.pcep.object,
97                                                         org.opendaylight.protocol.pcep.subobject,
98                                                         org.opendaylight.protocol.pcep.tlv,
99                             org.opendaylight.protocol.util,
100                                                         org.slf4j,
101                                                         io.netty.channel, 
102                                                         io.netty.util.concurrent,
103                                                 </Import-Package>
104                                                 <Export-Package>
105                                                         org.opendaylight.protocol.pcep.impl.*,
106                                                 </Export-Package>
107                                         </instructions>
108                                 </configuration>
109                         </plugin>
110                         <plugin>
111                                 <groupId>org.apache.maven.plugins</groupId>
112                                 <artifactId>maven-jar-plugin</artifactId>
113                                 <version>2.4</version>
114                                 <executions>
115                                         <execution>
116                                                 <phase>package</phase>
117                                                 <goals>
118                                                         <goal>test-jar</goal>
119                                                 </goals>
120                                         </execution>
121                                 </executions>
122                         </plugin>
123                 </plugins>
124         </build>
125
126         <distributionManagement>
127                 <site>
128                         <id>${project.artifactId}</id>
129                         <name>PCEP-IMPL Module site</name>
130                         <url>${basedir}/target/site/${project.artifactId}</url>
131                 </site>
132         </distributionManagement>
133
134 </project>