Merge "pom: update dependency"
[neutron.git] / neutron-hostconfig / vpp / 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.controller</groupId>
6     <artifactId>config-parent</artifactId>
7     <version>0.7.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.neutron</groupId>
12   <artifactId>neutron-hostconfig-vpp</artifactId>
13   <version>0.9.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     <netconf.version>1.3.0-SNAPSHOT</netconf.version>
20     <checkstyle.location>${project.parent.basedir}/src/main/resources</checkstyle.location>
21   </properties>
22   <dependencyManagement>
23     <dependencies>
24       <dependency>
25         <groupId>org.opendaylight.mdsal.model</groupId>
26         <artifactId>mdsal-model-artifacts</artifactId>
27         <version>0.11.0-SNAPSHOT</version>
28         <type>pom</type>
29         <scope>import</scope>
30       </dependency>
31       <dependency>
32         <groupId>org.opendaylight.netconf</groupId>
33         <artifactId>netconf-artifacts</artifactId>
34         <version>${netconf.version}</version>
35         <type>pom</type>
36         <scope>import</scope>
37       </dependency>
38     </dependencies>
39   </dependencyManagement>
40   <dependencies>
41     <dependency>
42       <groupId>org.opendaylight.neutron</groupId>
43       <artifactId>neutron-spi</artifactId>
44       <version>${project.version}</version>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.neutron</groupId>
48       <artifactId>model</artifactId>
49       <version>${project.version}</version>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.neutron</groupId>
53       <artifactId>neutron-hostconfig-utils</artifactId>
54       <version>${project.version}</version>
55     </dependency>
56     <dependency>
57       <groupId>org.osgi</groupId>
58       <artifactId>org.osgi.core</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.slf4j</groupId>
62       <artifactId>slf4j-api</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>config-api</artifactId>
67       <version>0.7.0-SNAPSHOT</version>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.netconf</groupId>
71       <artifactId>odl-netconf-api</artifactId>
72       <version>${netconf.version}</version>
73       <type>xml</type>
74       <classifier>features</classifier>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.netconf</groupId>
78       <artifactId>sal-netconf-connector</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>sal-binding-broker-impl</artifactId>
83       <type>test-jar</type>
84       <scope>test</scope>
85     </dependency>
86   </dependencies>
87   <build>
88     <plugins>
89       <plugin>
90         <groupId>org.apache.maven.plugins</groupId>
91         <artifactId>maven-compiler-plugin</artifactId>
92         <inherited>true</inherited>
93         <configuration>
94           <compilerArgs>
95             <arg>-Xlint:unchecked</arg>
96             <arg>-Xlint:deprecation</arg>
97           </compilerArgs>
98         </configuration>
99       </plugin>
100       <plugin>
101         <artifactId>maven-checkstyle-plugin</artifactId>
102         <configuration>
103           <excludes>org/opendaylight/yang/gen/**,**/yang/**</excludes>
104           <consoleOutput>true</consoleOutput>
105           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
106         </configuration>
107         <executions>
108           <execution>
109             <goals>
110               <goal>check</goal>
111             </goals>
112             <phase>process-sources</phase>
113           </execution>
114         </executions>
115       </plugin>
116       <plugin>
117         <groupId>org.apache.felix</groupId>
118         <artifactId>maven-bundle-plugin</artifactId>
119         <extensions>true</extensions>
120         <configuration>
121           <instructions>
122             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
123             <Import-Package>*</Import-Package>
124           </instructions>
125         </configuration>
126       </plugin>
127       <plugin>
128           <groupId>org.codehaus.mojo</groupId>
129           <artifactId>build-helper-maven-plugin</artifactId>
130           <executions>
131               <execution>
132                   <id>attach-artifacts</id>
133                   <phase>package</phase>
134                   <goals>
135                       <goal>attach-artifact</goal>
136                   </goals>
137                   <configuration>
138                       <artifacts>
139                           <artifact>
140                               <file>${project.build.directory}/classes/config/startup.cfg</file>
141                               <type>cfg</type>
142                               <classifier>config</classifier>
143                           </artifact>
144                       </artifacts>
145                   </configuration>
146               </execution>
147           </executions>
148       </plugin>
149     </plugins>
150   </build>
151   <scm>
152     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
153     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
154     <tag>HEAD</tag>
155     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
156   </scm>
157   <distributionManagement>
158     <!-- Site deployment -->
159     <site>
160       <id>opendaylight-site</id>
161       <url>${nexus.site.url}/${project.artifactId}/</url>
162     </site>
163   </distributionManagement>
164
165   <!--
166       Maven Site Configuration
167
168       The following configuration is necessary for maven-site-plugin to
169       correctly identify the correct deployment path for OpenDaylight Maven
170       sites.
171   -->
172   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
173 </project>