e348ff3c8615b91280b79eac3779bf71ffee7e4b
[bgpcep.git] / rsvp / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xmlns="http://maven.apache.org/POM/4.0.0"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <parent>
6         <artifactId>rsvp-parent</artifactId>
7         <groupId>org.opendaylight.bgpcep</groupId>
8         <version>0.6.4-SNAPSHOT</version>
9     </parent>
10     <modelVersion>4.0.0</modelVersion>
11
12     <artifactId>rsvp-impl</artifactId>
13     <description>RSVP IMPL</description>
14     <packaging>bundle</packaging>
15     <name>${project.artifactId}</name>
16     <prerequisites>
17         <maven>3.0.4</maven>
18     </prerequisites>
19
20     <dependencies>
21         <dependency>
22             <groupId>${project.groupId}</groupId>
23             <artifactId>util</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>${project.groupId}</groupId>
27             <artifactId>rsvp-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>${project.groupId}</groupId>
31             <artifactId>rsvp-spi</artifactId>
32             <version>${project.version}</version>
33         </dependency>
34         <dependency>
35             <groupId>com.google.guava</groupId>
36             <artifactId>guava</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.slf4j</groupId>
40             <artifactId>slf4j-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.yangtools</groupId>
44             <artifactId>concepts</artifactId>
45         </dependency>
46
47         <dependency>
48             <groupId>org.opendaylight.yangtools</groupId>
49             <artifactId>mockito-configuration</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>junit</groupId>
53             <artifactId>junit</artifactId>
54         </dependency>
55
56         <dependency>
57             <groupId>org.opendaylight.controller</groupId>
58             <artifactId>config-manager</artifactId>
59             <type>test-jar</type>
60             <scope>test</scope>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.controller</groupId>
64             <artifactId>config-manager</artifactId>
65             <scope>test</scope>
66         </dependency>
67     </dependencies>
68
69     <build>
70         <plugins>
71             <plugin>
72                 <groupId>org.apache.felix</groupId>
73                 <artifactId>maven-bundle-plugin</artifactId>
74                 <extensions>true</extensions>
75                 <configuration>
76                     <instructions>
77                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
78                     </instructions>
79                 </configuration>
80             </plugin>
81         </plugins>
82     </build>
83
84   <!--
85       Maven Site Configuration
86
87       The following configuration is necessary for maven-site-plugin to
88       correctly identify the correct deployment path for OpenDaylight Maven
89       sites.
90   -->
91   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
92
93   <distributionManagement>
94     <site>
95       <id>opendaylight-site</id>
96       <url>${nexus.site.url}/${project.artifactId}/</url>
97     </site>
98   </distributionManagement>
99 </project>