Fixed some dependency issues in features.
[alto.git] / alto-services / ext / fs-map / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4  xsi:schemaLocation="http://maven.apache.org/xsd/maven-4.0.0.xsd">
5   <modelVersion>4.0.0</modelVersion>
6
7   <parent>
8     <groupId>org.opendaylight.alto</groupId>
9     <artifactId>services.ext</artifactId>
10     <version>0.1.0-SNAPSHOT</version>
11     <relativePath>..</relativePath>
12   </parent>
13
14   <artifactId>services.ext.fs-map</artifactId>
15   <packaging>bundle</packaging>
16
17   <build>
18     <plugins>
19
20       <plugin>
21         <groupId>org.apache.maven.plugins</groupId>
22         <artifactId>maven-checkstyle-plugin</artifactId>
23       </plugin>
24
25       <plugin>
26         <groupId>org.apache.felix</groupId>
27         <artifactId>maven-bundle-plugin</artifactId>
28         <extensions>true</extensions>
29         <configuration>
30           <instructions>
31             <Import-Package>
32               org.opendaylight.alto.commons.types.rfc7285,
33               org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924,
34               org.slf4j,
35             </Import-Package>
36             <Export-Package>
37               org.opendaylight.alto.services.ext.fsmap;
38             </Export-Package>
39             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
40           </instructions>
41         </configuration>
42       </plugin>
43  
44     </plugins>
45   </build>
46
47   <dependencies>
48     <dependency>
49       <groupId>${project.groupId}</groupId>
50       <artifactId>alto-model</artifactId>
51       <version>${project.version}</version>
52     </dependency>
53
54     <dependency>
55       <groupId>${project.groupId}</groupId>
56       <artifactId>alto-commons</artifactId>
57       <version>${project.version}</version>
58     </dependency>
59   </dependencies>
60 </project>
61