Changes to prepare for MOXy 2.6.x
[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   <dependencies>
19     <dependency>
20       <groupId>commons-net</groupId>
21       <artifactId>commons-net</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.osgi</groupId>
25       <artifactId>org.osgi.core</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.slf4j</groupId>
29       <artifactId>slf4j-api</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>junit</groupId>
33       <artifactId>junit</artifactId>
34       <scope>test</scope>
35     </dependency>
36     <dependency>
37       <groupId>org.eclipse.persistence</groupId>
38       <artifactId>org.eclipse.persistence.antlr</artifactId>
39       <scope>test</scope>
40     </dependency>
41     <dependency>
42       <groupId>org.eclipse.persistence</groupId>
43       <artifactId>org.eclipse.persistence.core</artifactId>
44       <scope>test</scope>
45     </dependency>
46     <dependency>
47        <groupId>org.eclipse.persistence</groupId>
48        <artifactId>org.eclipse.persistence.moxy</artifactId>
49        <scope>test</scope>
50     </dependency>
51   </dependencies>
52   <build>
53     <plugins>
54       <plugin>
55         <groupId>org.apache.felix</groupId>
56         <artifactId>maven-bundle-plugin</artifactId>
57         <extensions>true</extensions>
58         <configuration>
59           <instructions>
60             <Import-Package>*</Import-Package>
61           </instructions>
62           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
63         </configuration>
64       </plugin>
65     </plugins>
66   </build>
67   <scm>
68     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
69     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
70     <tag>HEAD</tag>
71     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
72   </scm>
73   <distributionManagement>
74     <!-- OpenDayLight Released artifact -->
75     <repository>
76       <id>opendaylight-release</id>
77       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
78     </repository>
79     <!-- OpenDayLight Snapshot artifact -->
80     <snapshotRepository>
81       <id>opendaylight-snapshot</id>
82       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
83     </snapshotRepository>
84     <!-- Site deployment -->
85     <site>
86       <id>website</id>
87       <url>${sitedeploy}</url>
88     </site>
89   </distributionManagement>
90 </project>