Provide the SPCE module
[alto.git] / alto-extensions / cli / file-converter / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.alto</groupId>
7     <artifactId>alto-extensions</artifactId>
8     <version>0.3.0-SNAPSHOT</version>
9     <relativePath>../../</relativePath>
10   </parent>
11
12   <artifactId>file-converter</artifactId>
13   <packaging>bundle</packaging>
14   <name>${project.artifactId}</name>
15
16   <dependencies>
17     <dependency>
18       <groupId>${project.groupId}</groupId>
19       <artifactId>alto-model</artifactId>
20       <version>${project.version}</version>
21     </dependency>
22
23     <dependency>
24       <groupId>org.apache.karaf.shell</groupId>
25       <artifactId>org.apache.karaf.shell.console</artifactId>
26       <version>2.2.11</version>
27     </dependency>
28
29     <dependency>
30       <groupId>junit</groupId>
31       <artifactId>junit</artifactId>
32       <version>3.8.1</version>
33       <scope>test</scope>
34     </dependency>
35
36     <dependency>
37       <groupId>${project.groupId}</groupId>
38       <artifactId>alto-commons</artifactId>
39       <version>${project.version}</version>
40     </dependency>
41   </dependencies>
42
43   <build>
44     <plugins>
45       <plugin>
46         <groupId>org.apache.felix</groupId>
47         <artifactId>maven-bundle-plugin</artifactId>
48         <version>${bundle.plugin.version}</version>
49         <configuration>
50           <instructions>
51             <Import-Package>
52               org.apache.felix.service.command,
53               org.apache.felix.gogo.commands,
54               org.apache.karaf.shell.console,
55               org.opendaylight.alto.commons.types.*,
56               *
57             </Import-Package>
58             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
59           </instructions>
60         </configuration>
61       </plugin>
62     </plugins>
63   </build>
64 </project>