Cleanup switch certificate chain handling
[openflowplugin.git] / openflowplugin-blueprint-config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6       <groupId>org.opendaylight.openflowplugin</groupId>
7       <artifactId>openflowplugin-parent</artifactId>
8       <version>0.14.0-SNAPSHOT</version>
9       <relativePath>../parent</relativePath>
10     </parent>
11
12     <artifactId>openflowplugin-blueprint-config</artifactId>
13     <description>Blueprint configuration for the openflowplugin</description>
14     <packaging>bundle</packaging>
15
16     <build>
17       <plugins>
18         <plugin>
19           <groupId>org.apache.felix</groupId>
20           <artifactId>maven-bundle-plugin</artifactId>
21           <extensions>true</extensions>
22           <configuration>
23             <instructions>
24               <DynamicImport-Package>*</DynamicImport-Package>
25            </instructions>
26          </configuration>
27        </plugin>
28        <plugin>
29            <groupId>org.codehaus.mojo</groupId>
30            <artifactId>build-helper-maven-plugin</artifactId>
31            <executions>
32                <execution>
33                    <id>attach-artifacts</id>
34                    <goals>
35                        <goal>attach-artifact</goal>
36                    </goals>
37                    <phase>package</phase>
38                    <configuration>
39                        <artifacts>
40                            <artifact>
41                                <file>${project.build.directory}/classes/initial/openflowplugin.cfg</file>
42                                <type>cfg</type>
43                                <classifier>config</classifier>
44                            </artifact>
45                        </artifacts>
46                    </configuration>
47                </execution>
48            </executions>
49        </plugin>
50      </plugins>
51    </build>
52 </project>