Bump versions by x.(y+1).z
[openflowplugin.git] / openflowjava / openflowjava-blueprint-config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2016 Inocybe Technologies, Inc. and others. All rights reserved.
3     This program and the accompanying materials are made available under the
4     terms of the Eclipse Public License v1.0 which accompanies this distribution,
5     and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <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">
7
8     <modelVersion>4.0.0</modelVersion>
9
10     <parent>
11         <groupId>org.opendaylight.openflowplugin.openflowjava</groupId>
12         <artifactId>openflowjava-parent</artifactId>
13         <version>0.15.0-SNAPSHOT</version>
14         <relativePath>../</relativePath>
15     </parent>
16     <artifactId>openflowjava-blueprint-config</artifactId>
17     <description>Blueprint configuration files for openflowjava statistics</description>
18     <packaging>bundle</packaging>
19     <!-- <name> formatting is used by autorelease to parse and notify projects on
20          build failure. Please do not modify this unless you have a good reason. -->
21     <name>ODL :: openflowjava :: ${project.artifactId}</name>
22     <scm>
23         <url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
24         <tag>HEAD</tag>
25     </scm>
26     <build>
27         <plugins>
28             <plugin>
29                 <groupId>org.apache.felix</groupId>
30                 <artifactId>maven-bundle-plugin</artifactId>
31                 <extensions>true</extensions>
32                 <configuration>
33                     <instructions>
34                         <DynamicImport-Package>*</DynamicImport-Package>
35                     </instructions>
36                 </configuration>
37             </plugin>
38             <plugin>
39                 <groupId>org.codehaus.mojo</groupId>
40                 <artifactId>build-helper-maven-plugin</artifactId>
41                 <executions>
42                     <execution>
43                         <id>attach-artifacts</id>
44                         <goals>
45                             <goal>attach-artifact</goal>
46                         </goals>
47                         <phase>package</phase>
48                         <configuration>
49                             <artifacts>
50                                <artifact>
51                                    <file>${project.build.directory}/classes/initial/default-openflow-connection-config.xml</file>
52                                    <type>xml</type>
53                                    <classifier>config</classifier>
54                                </artifact>
55                                <artifact>
56                                    <file>${project.build.directory}/classes/initial/legacy-openflow-connection-config.xml</file>
57                                    <type>xml</type>
58                                    <classifier>legacyConfig</classifier>
59                                </artifact>
60                             </artifacts>
61                         </configuration>
62                     </execution>
63                 </executions>
64             </plugin>
65         </plugins>
66     </build>
67 </project>