Merge "Switch to using yangtools version of mockito-configuration"
[controller.git] / opendaylight / networkconfiguration / neutron / implementation / 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/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.4.1-SNAPSHOT</version>
8     <relativePath>../../../commons/opendaylight</relativePath>
9   </parent>
10   <properties>
11     <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
12     <enunciate.version>1.26.2</enunciate.version>
13   </properties>
14   <scm>
15     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
16     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
17     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
18     <tag>HEAD</tag>
19   </scm>
20
21   <distributionManagement>
22     <!-- OpenDayLight Released artifact -->
23     <repository>
24       <id>opendaylight-release</id>
25       <url>${nexusproxy}/repositories/opendaylight.release/</url>
26     </repository>
27     <!-- OpenDayLight Snapshot artifact -->
28     <snapshotRepository>
29       <id>opendaylight-snapshot</id>
30       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
31     </snapshotRepository>
32     <!-- Site deployment -->
33     <site>
34       <id>website</id>
35       <url>${sitedeploy}</url>
36     </site>
37   </distributionManagement>
38   <groupId>org.opendaylight.controller</groupId>
39   <artifactId>networkconfig.neutron.implementation</artifactId>
40   <version>0.4.1-SNAPSHOT</version>
41   <packaging>bundle</packaging>
42   <build>
43     <plugins>
44       <plugin>
45         <groupId>org.apache.felix</groupId>
46         <artifactId>maven-bundle-plugin</artifactId>
47         <version>2.3.6</version>
48         <extensions>true</extensions>
49         <configuration>
50           <instructions>
51             <Import-Package>
52               org.opendaylight.controller.clustering.services,
53               org.opendaylight.controller.configuration,
54               org.opendaylight.controller.sal.core,
55               org.opendaylight.controller.sal.utils,
56               org.apache.felix.dm,
57               org.apache.commons.net.util,
58               org.osgi.service.component,
59               org.opendaylight.controller.networkconfig.neutron,
60               org.slf4j,
61               javax.xml.bind.annotation
62             </Import-Package>
63             <Bundle-Activator>
64               org.opendaylight.controller.networkconfig.neutron.implementation.Activator
65             </Bundle-Activator>
66           </instructions>
67           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
68         </configuration>
69       </plugin>
70     </plugins>
71   </build>
72   <dependencies>
73     <dependency>
74       <groupId>org.osgi</groupId>
75       <artifactId>org.osgi.core</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>clustering.services</artifactId>
80       <version>0.5.0-SNAPSHOT</version>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>configuration</artifactId>
85       <version>0.4.1-SNAPSHOT</version>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.controller</groupId>
89       <artifactId>networkconfig.neutron</artifactId>
90       <version>0.4.1-SNAPSHOT</version>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.controller</groupId>
94       <artifactId>sal</artifactId>
95       <version>0.7.0-SNAPSHOT</version>
96     </dependency>
97   </dependencies>
98 </project>