Release Carbon
[openflowjava.git] / 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"
7     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8
9     <modelVersion>4.0.0</modelVersion>
10
11     <parent>
12         <groupId>org.opendaylight.openflowjava</groupId>
13         <artifactId>openflowjava-parent</artifactId>
14         <version>0.9.1-Carbon</version>
15         <relativePath>../parent</relativePath>
16     </parent>
17     <artifactId>openflowjava-blueprint-config</artifactId>
18     <description>Blueprint configuration files for openflowjava statistics</description>
19     <packaging>bundle</packaging>
20     <name>Openflow Protocol Library - Blueprint Config</name>
21     <scm>
22         <url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
23         <tag>HEAD</tag>
24     </scm>
25     <build>
26         <plugins>
27             <plugin>
28                 <groupId>org.apache.felix</groupId>
29                 <artifactId>maven-bundle-plugin</artifactId>
30                 <extensions>true</extensions>
31                 <configuration>
32                     <instructions>
33                         <DynamicImport-Package>*</DynamicImport-Package>
34                     </instructions>
35                 </configuration>
36             </plugin>
37             <plugin>
38                 <groupId>org.codehaus.mojo</groupId>
39                 <artifactId>build-helper-maven-plugin</artifactId>
40                 <executions>
41                     <execution>
42                         <id>attach-artifacts</id>
43                         <goals>
44                             <goal>attach-artifact</goal>
45                         </goals>
46                         <phase>package</phase>
47                         <configuration>
48                             <artifacts>
49                                <artifact>
50                                    <file>${project.build.directory}/classes/initial/default-openflow-connection-config.xml</file>
51                                    <type>xml</type>
52                                    <classifier>config</classifier>
53                                </artifact>
54                                <artifact>
55                                    <file>${project.build.directory}/classes/initial/legacy-openflow-connection-config.xml</file>
56                                    <type>xml</type>
57                                    <classifier>legacyConfig</classifier>
58                                </artifact>
59                             </artifacts>
60                         </configuration>
61                     </execution>
62                 </executions>
63             </plugin>
64         </plugins>
65     </build>
66 </project>