cc05784947da7d1c27f66b5933087604fddb3d7e
[vpnservice.git] / itm / itm-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     
5     <parent>
6         <groupId>org.opendaylight.vpnservice</groupId>
7         <artifactId>config-parent</artifactId>
8         <version>0.3.0-SNAPSHOT</version>
9         <relativePath>../../commons/config-parent</relativePath>
10      </parent>
11     <modelVersion>4.0.0</modelVersion>
12     <groupId>org.opendaylight.vpnservice</groupId>
13     <artifactId>itm-impl</artifactId>
14     <version>${vpnservices.version}</version>    
15     <packaging>bundle</packaging>
16     
17     <properties>
18         <xtend.version>2.4.3</xtend.version>
19     </properties>
20     <dependencies>
21         <dependency>
22       <groupId>org.opendaylight.vpnservice</groupId>
23       <artifactId>itm-api</artifactId>
24       <version>${vpnservices.version}</version>
25     </dependency>
26     <dependency>
27        <groupId>org.opendaylight.vpnservice</groupId>
28        <artifactId>idmanager-api</artifactId>
29        <version>${vpnservices.version}</version>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.vpnservice</groupId>
33       <artifactId>interfacemgr-api</artifactId>
34       <version>${vpnservices.version}</version>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.vpnservice</groupId>
38       <artifactId>mdsalutil-api</artifactId>
39       <version>${vpnservices.version}</version>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>sal-binding-broker-impl</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.mdsal.model</groupId>
47       <artifactId>ietf-interfaces</artifactId>
48     </dependency>
49     <!-- Testing Dependencies -->
50     <dependency>
51       <groupId>junit</groupId>
52       <artifactId>junit</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.mockito</groupId>
57       <artifactId>mockito-all</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61         <groupId>org.osgi</groupId>
62         <artifactId>org.osgi.core</artifactId>
63         <scope>provided</scope>
64     </dependency>
65     <dependency>
66         <groupId>org.apache.karaf.shell</groupId>
67         <artifactId>org.apache.karaf.shell.console</artifactId>
68         <version>${karaf.shell.console.version}</version>
69     </dependency>
70     <dependency>
71         <groupId>com.google.guava</groupId>
72         <artifactId>guava</artifactId>
73         <version>18.0</version>
74       </dependency>
75       <dependency>
76       <groupId>commons-net</groupId>
77       <artifactId>commons-net</artifactId>
78     </dependency>
79         <dependency>
80             <groupId>org.opendaylight.vpnservice</groupId>
81             <artifactId>idmanager-api</artifactId>
82             <version>0.3.0-SNAPSHOT</version>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.vpnservice</groupId>
86             <artifactId>idmanager-api</artifactId>
87             <version>0.3.0-SNAPSHOT</version>
88         </dependency>
89     </dependencies>
90     <build>
91         <plugins>
92             <plugin>
93                 <groupId>org.apache.felix</groupId>
94                 <artifactId>maven-bundle-plugin</artifactId>
95                 <configuration>
96                     <instructions>
97                         <Import-Package>
98                             org.apache.felix.service.command,
99                             org.apache.felix.gogo.commands,
100                             org.apache.karaf.shell.console,
101                             *
102                         </Import-Package>
103                     </instructions>
104                 </configuration>
105             </plugin>
106         </plugins>
107     </build>
108   </project>