5f2f66e9c691ba3dd5b8d2b56da4df3a5d690171
[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.0-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.opendaylight.yangtools</groupId>
73                 <artifactId>yang-maven-plugin</artifactId>
74             </plugin>
75             <plugin>
76                 <groupId>org.apache.felix</groupId>
77                 <artifactId>maven-bundle-plugin</artifactId>
78                 <extensions>true</extensions>
79                 <configuration>
80                     <instructions>
81                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
82                     </instructions>
83                 </configuration>
84             </plugin>
85         </plugins>
86     </build>
87
88   <!--
89       Maven Site Configuration
90
91       The following configuration is necessary for maven-site-plugin to
92       correctly identify the correct deployment path for OpenDaylight Maven
93       sites.
94   -->
95   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
96
97   <distributionManagement>
98     <site>
99       <id>opendaylight-site</id>
100       <url>${nexus.site.url}/${project.artifactId}/</url>
101     </site>
102   </distributionManagement>
103 </project>