Merge "Bug 4365 - Null pointer exception at org.opendaylight.neutron.spi.NeutronNetwo...
[neutron.git] / neutron-spi / 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" 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.neutron</groupId>
6     <artifactId>project-neutron-parent</artifactId>
7     <version>0.6.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.neutron</groupId>
12   <artifactId>neutron-spi</artifactId>
13   <version>0.6.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <properties>
16     <checkstyle.location>${project.parent.basedir}/src/main/resources</checkstyle.location>
17   </properties>
18   <dependencyManagement>
19     <dependencies>
20       <dependency>
21         <groupId>org.opendaylight.mdsal.model</groupId>
22         <artifactId>mdsal-model-artifacts</artifactId>
23         <version>0.8.0-SNAPSHOT</version>
24         <type>pom</type>
25         <scope>import</scope>
26       </dependency>
27     </dependencies>
28   </dependencyManagement>
29   <dependencies>
30     <dependency>
31       <groupId>org.opendaylight.neutron</groupId>
32       <artifactId>model</artifactId>
33       <version>${project.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.mdsal.model</groupId>
37       <artifactId>ietf-inet-types</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.mdsal.model</groupId>
41       <artifactId>ietf-yang-types</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.mdsal.model</groupId>
45       <artifactId>yang-ext</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>commons-net</groupId>
49       <artifactId>commons-net</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.osgi</groupId>
53       <artifactId>org.osgi.core</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.slf4j</groupId>
57       <artifactId>slf4j-api</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>junit</groupId>
61       <artifactId>junit</artifactId>
62       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.eclipse.persistence</groupId>
66       <artifactId>org.eclipse.persistence.antlr</artifactId>
67       <version>2.5.2</version>
68       <scope>test</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.eclipse.persistence</groupId>
72       <artifactId>org.eclipse.persistence.core</artifactId>
73       <version>2.5.2</version>
74       <scope>test</scope>
75     </dependency>
76     <dependency>
77        <groupId>org.eclipse.persistence</groupId>
78        <artifactId>org.eclipse.persistence.moxy</artifactId>
79        <version>2.5.2</version>
80        <scope>test</scope>
81     </dependency>
82   </dependencies>
83   <build>
84     <plugins>
85       <plugin>
86         <groupId>org.apache.felix</groupId>
87         <artifactId>maven-bundle-plugin</artifactId>
88         <extensions>true</extensions>
89         <configuration>
90           <instructions>
91             <Import-Package>*</Import-Package>
92           </instructions>
93           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
94         </configuration>
95       </plugin>
96     </plugins>
97   </build>
98   <scm>
99     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
100     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
101     <tag>HEAD</tag>
102     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
103   </scm>
104   <distributionManagement>
105     <!-- OpenDayLight Released artifact -->
106     <repository>
107       <id>opendaylight-release</id>
108       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
109     </repository>
110     <!-- OpenDayLight Snapshot artifact -->
111     <snapshotRepository>
112       <id>opendaylight-snapshot</id>
113       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
114     </snapshotRepository>
115     <!-- Site deployment -->
116     <site>
117       <id>website</id>
118       <url>${sitedeploy}</url>
119     </site>
120   </distributionManagement>
121 </project>