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