Bump versions by x.(y+1).z for next dev cycle
[nemo.git] / nemo-renderers / openflow-renderer / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Huawei, Inc and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html
7 -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.mdsal</groupId>
14     <artifactId>binding-parent</artifactId>
15     <version>0.13.0-SNAPSHOT</version>
16     <relativePath />
17   </parent>
18
19   <groupId>org.opendaylight.nemo</groupId>
20   <artifactId>openflow-renderer</artifactId>
21   <version>1.5.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: nemo :: ${project.artifactId}</name>
26
27   <properties>
28     <openflowplugin.version>0.7.0-SNAPSHOT</openflowplugin.version>
29     <sonar.jacoco.reportPath>target/code-coverage/jacoco.exec</sonar.jacoco.reportPath>
30     <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
31   </properties>
32
33   <dependencyManagement>
34     <dependencies>
35       <dependency>
36         <groupId>org.opendaylight.controller</groupId>
37         <artifactId>mdsal-artifacts</artifactId>
38         <version>1.8.0-SNAPSHOT</version>
39         <type>pom</type>
40         <scope>import</scope>
41       </dependency>
42     </dependencies>
43   </dependencyManagement>
44
45   <dependencies>
46     <dependency>
47       <groupId>org.opendaylight.mdsal.model</groupId>
48       <artifactId>yang-ext</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller.model</groupId>
52       <artifactId>model-topology</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.openflowplugin.libraries</groupId>
56       <artifactId>liblldp</artifactId>
57       <version>${openflowplugin.version}</version>
58     </dependency>
59     <dependency>
60       <groupId>commons-net</groupId>
61       <artifactId>commons-net</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.openflowplugin</groupId>
65       <artifactId>openflowplugin-extension-nicira</artifactId>
66       <version>${openflowplugin.version}</version>
67     </dependency>
68     <dependency>
69       <groupId>${project.groupId}</groupId>
70       <artifactId>nemo-api</artifactId>
71       <version>${project.version}</version>
72     </dependency>
73     <dependency>
74       <groupId>${project.groupId}</groupId>
75       <artifactId>nemo-impl</artifactId>
76       <version>${project.version}</version>
77     </dependency>
78     <dependency>
79       <groupId>com.fasterxml.jackson.core</groupId>
80       <artifactId>jackson-core</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>com.fasterxml.jackson.core</groupId>
84       <artifactId>jackson-databind</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>com.fasterxml.jackson.core</groupId>
88       <artifactId>jackson-annotations</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.codehaus.jettison</groupId>
92       <artifactId>jettison</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>junit</groupId>
96       <artifactId>junit</artifactId>
97       <scope>test</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.mockito</groupId>
101       <artifactId>mockito-core</artifactId>
102       <scope>test</scope>
103     </dependency>
104     <dependency>
105       <groupId>org.slf4j</groupId>
106       <artifactId>slf4j-simple</artifactId>
107       <scope>test</scope>
108     </dependency>
109   </dependencies>
110
111   <build>
112     <plugins>
113       <plugin>
114         <groupId>org.apache.felix</groupId>
115         <artifactId>maven-bundle-plugin</artifactId>
116         <configuration>
117           <instructions>
118             <Export-Package>
119               org.codehaus.jackson,
120               org.codehaus.jackson.*,
121               org.joda.time.*
122             </Export-Package>
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             <goals>
134               <goal>attach-artifact</goal>
135             </goals>
136             <phase>package</phase>
137             <configuration>
138               <artifacts>
139                 <artifact>
140                   <file>${project.build.directory}/classes/etc/opendaylight/karaf/node-resource.json</file>
141                   <type>json</type>
142                   <classifier>node-resource</classifier>
143                 </artifact>
144                 <artifact>
145                   <file>${project.build.directory}/classes/etc/opendaylight/karaf/host-resource.json</file>
146                   <type>json</type>
147                   <classifier>host-resource</classifier>
148                 </artifact>
149                 <artifact>
150                   <file>${project.build.directory}/classes/etc/opendaylight/karaf/link-resource.json</file>
151                   <type>json</type>
152                   <classifier>link-resource</classifier>
153                 </artifact>
154                 <artifact>
155                   <file>${project.build.directory}/classes/etc/opendaylight/karaf/external-resource.json</file>
156                   <type>json</type>
157                   <classifier>external-resource</classifier>
158                 </artifact>
159               </artifacts>
160             </configuration>
161           </execution>
162         </executions>
163       </plugin>
164       <plugin>
165         <groupId>org.jacoco</groupId>
166         <artifactId>jacoco-maven-plugin</artifactId>
167         <configuration>
168           <includes>
169             <include>org.opendaylight.nemo.*</include>
170           </includes>
171         </configuration>
172         <executions>
173           <execution>
174             <id>pre-unit-test</id>
175             <goals>
176               <goal>prepare-agent</goal>
177             </goals>
178             <configuration>
179               <destFile>${sonar.jacoco.reportPath}</destFile>
180             </configuration>
181           </execution>
182           <execution>
183             <id>post-unit-test</id>
184             <goals>
185               <goal>report</goal>
186             </goals>
187             <configuration>
188               <dataFile>${sonar.jacoco.reportPath}</dataFile>
189             </configuration>
190           </execution>
191         </executions>
192       </plugin>
193     </plugins>
194   </build>
195
196   <scm>
197     <connection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</connection>
198     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</developerConnection>
199     <url>https://wiki.opendaylight.org/view/NEMO:Main</url>
200     <tag>HEAD</tag>
201   </scm>
202 </project>