Merge "Remove MOXyJsonProvider from resources"
[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.10.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.neutron</groupId>
12   <artifactId>neutron-spi</artifactId>
13   <version>0.10.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <!-- <name> formatting is used by autorelease to parse and notify projects on
16        build failure. Please do not modify this unless you have a good reason. -->
17   <name>ODL :: neutron :: ${project.artifactId}</name>
18   <properties>
19     <checkstyle.location>${project.parent.basedir}/src/main/resources</checkstyle.location>
20   </properties>
21   <dependencyManagement>
22     <dependencies>
23       <dependency>
24         <groupId>org.opendaylight.mdsal.model</groupId>
25         <artifactId>mdsal-model-artifacts</artifactId>
26         <version>0.12.0-SNAPSHOT</version>
27         <type>pom</type>
28         <scope>import</scope>
29       </dependency>
30     </dependencies>
31   </dependencyManagement>
32   <dependencies>
33     <dependency>
34       <groupId>org.opendaylight.neutron</groupId>
35       <artifactId>model</artifactId>
36       <version>${project.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.mdsal.model</groupId>
40       <artifactId>ietf-inet-types-2013-07-15</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.mdsal.model</groupId>
44       <artifactId>ietf-yang-types-20130715</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.mdsal.model</groupId>
48       <artifactId>yang-ext</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>commons-net</groupId>
52       <artifactId>commons-net</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.osgi</groupId>
56       <artifactId>org.osgi.core</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.slf4j</groupId>
60       <artifactId>slf4j-api</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>junit</groupId>
64       <artifactId>junit</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>javax.validation</groupId>
69       <artifactId>validation-api</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.eclipse.persistence</groupId>
73       <artifactId>org.eclipse.persistence.antlr</artifactId>
74       <scope>test</scope>
75     </dependency>
76     <dependency>
77       <groupId>org.eclipse.persistence</groupId>
78       <artifactId>org.eclipse.persistence.core</artifactId>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82        <groupId>org.eclipse.persistence</groupId>
83        <artifactId>org.eclipse.persistence.moxy</artifactId>
84        <scope>test</scope>
85     </dependency>
86   </dependencies>
87   <build>
88     <plugins>
89       <plugin>
90         <artifactId>maven-checkstyle-plugin</artifactId>
91         <configuration>
92           <excludes>org/opendaylight/yang/gen/**,**/yang/**</excludes>
93           <consoleOutput>true</consoleOutput>
94           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
95         </configuration>
96         <executions>
97           <execution>
98             <goals>
99               <goal>check</goal>
100             </goals>
101             <phase>process-sources</phase>
102           </execution>
103         </executions>
104       </plugin>
105       <plugin>
106         <groupId>org.apache.felix</groupId>
107         <artifactId>maven-bundle-plugin</artifactId>
108         <extensions>true</extensions>
109         <configuration>
110           <instructions>
111             <Import-Package>*</Import-Package>
112           </instructions>
113         </configuration>
114       </plugin>
115       <plugin>
116         <groupId>org.apache.maven.plugins</groupId>
117         <artifactId>maven-compiler-plugin</artifactId>
118         <inherited>true</inherited>
119         <configuration>
120           <compilerArgs>
121             <arg>-Xlint:unchecked</arg>
122             <arg>-Xlint:deprecation</arg>
123           </compilerArgs>
124         </configuration>
125       </plugin>
126     </plugins>
127   </build>
128   <scm>
129     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
130     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
131     <tag>HEAD</tag>
132     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
133   </scm>
134   <distributionManagement>
135     <!-- Site deployment -->
136     <site>
137       <id>opendaylight-site</id>
138       <url>${nexus.site.url}/${project.artifactId}/</url>
139     </site>
140   </distributionManagement>
141
142   <!--
143       Maven Site Configuration
144
145       The following configuration is necessary for maven-site-plugin to
146       correctly identify the correct deployment path for OpenDaylight Maven
147       sites.
148   -->
149   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
150 </project>