Bump versions by x.(y+1).z for next dev cycle
[controller.git] / opendaylight / md-sal / mdsal-trace / api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Red Hat and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.controller</groupId>
14     <artifactId>mdsal-parent</artifactId>
15     <version>1.9.0-SNAPSHOT</version>
16     <relativePath>../../parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.controller</groupId>
20   <artifactId>mdsal-trace-api</artifactId>
21   <version>1.9.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23
24   <dependencies>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>sal-core-api</artifactId>
28     </dependency>
29   </dependencies>
30   <build>
31     <plugins>
32       <plugin>
33         <groupId>org.codehaus.mojo</groupId>
34         <artifactId>build-helper-maven-plugin</artifactId>
35         <executions>
36           <execution>
37             <id>attach-artifacts</id>
38             <goals>
39               <goal>attach-artifact</goal>
40             </goals>
41             <phase>package</phase>
42             <configuration>
43               <artifacts>
44                 <artifact>
45                   <file>${project.build.directory}/classes/initial/mdsaltrace_config.xml</file>
46                   <type>xml</type>
47                   <classifier>config</classifier>
48                 </artifact>
49               </artifacts>
50             </configuration>
51           </execution>
52         </executions>
53       </plugin>
54     </plugins>
55   </build>
56 </project>