Fixed the error bundle name in features.xml
[alto.git] / alto-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   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.alto</groupId>
6     <artifactId>alto-parent</artifactId>
7     <version>0.1.0-SNAPSHOT</version>
8     <relativePath>../</relativePath>
9   </parent>
10
11   <artifactId>alto-config</artifactId>
12   <packaging>jar</packaging>
13
14   <build>
15     <plugins>
16       <plugin>
17         <groupId>org.codehaus.mojo</groupId>
18         <artifactId>build-helper-maven-plugin</artifactId>
19         <executions>
20           <execution>
21             <id>attach-artifacts</id>
22             <goals>
23               <goal>attach-artifact</goal>
24             </goals>
25             <phase>package</phase>
26             <configuration>
27               <artifacts>
28                 <artifact>
29                   <file>${project.build.directory}/classes/initial/03-alto.xml</file>
30                   <type>xml</type>
31                   <classifier>config</classifier>
32                 </artifact>
33               </artifacts>
34             </configuration>
35           </execution>
36         </executions>
37       </plugin>
38     </plugins>
39   </build>
40 </project>