Migrate to odlparent 1.8.0-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.10.0-SNAPSHOT</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> formatting is used by autorelease to parse and notify projects on
21          build failure. Please do not modify this unless you have a good reason. -->
22     <name>ODL :: openflowjava :: ${project.artifactId}</name>
23     <scm>
24         <url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
25         <tag>HEAD</tag>
26     </scm>
27     <build>
28         <plugins>
29             <plugin>
30                 <groupId>org.apache.felix</groupId>
31                 <artifactId>maven-bundle-plugin</artifactId>
32                 <extensions>true</extensions>
33                 <configuration>
34                     <instructions>
35                         <DynamicImport-Package>*</DynamicImport-Package>
36                     </instructions>
37                 </configuration>
38             </plugin>
39             <plugin>
40                 <groupId>org.codehaus.mojo</groupId>
41                 <artifactId>build-helper-maven-plugin</artifactId>
42                 <executions>
43                     <execution>
44                         <id>attach-artifacts</id>
45                         <goals>
46                             <goal>attach-artifact</goal>
47                         </goals>
48                         <phase>package</phase>
49                         <configuration>
50                             <artifacts>
51                                <artifact>
52                                    <file>${project.build.directory}/classes/initial/default-openflow-connection-config.xml</file>
53                                    <type>xml</type>
54                                    <classifier>config</classifier>
55                                </artifact>
56                                <artifact>
57                                    <file>${project.build.directory}/classes/initial/legacy-openflow-connection-config.xml</file>
58                                    <type>xml</type>
59                                    <classifier>legacyConfig</classifier>
60                                </artifact>
61                             </artifacts>
62                         </configuration>
63                     </execution>
64                 </executions>
65             </plugin>
66         </plugins>
67     </build>
68 </project>