Convert neutron service base classes to unix line delimiters.
[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.sal.core,
54               org.opendaylight.controller.sal.utils,
55               org.apache.felix.dm,
56               org.apache.commons.net.util,
57               org.osgi.service.component,
58               org.opendaylight.controller.networkconfig.neutron,
59               org.slf4j,
60               javax.xml.bind.annotation
61             </Import-Package>
62             <Bundle-Activator>
63               org.opendaylight.controller.networkconfig.neutron.implementation.Activator
64             </Bundle-Activator>
65           </instructions>
66           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
67         </configuration>
68       </plugin>
69     </plugins>
70   </build>
71   <dependencies>
72     <dependency>
73       <groupId>org.osgi</groupId>
74       <artifactId>org.osgi.core</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.controller</groupId>
78       <artifactId>clustering.services</artifactId>
79       <version>0.4.1-SNAPSHOT</version>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.controller</groupId>
83       <artifactId>networkconfig.neutron</artifactId>
84       <version>0.4.1-SNAPSHOT</version>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.controller</groupId>
88       <artifactId>sal</artifactId>
89       <version>0.5.1-SNAPSHOT</version>
90     </dependency>
91   </dependencies>
92 </project>