Merge "Bug 809: Enhancements to the toaster example"
[controller.git] / opendaylight / config / feature / 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.controller</groupId>
6     <artifactId>config-subsystem</artifactId>
7     <version>0.2.5-SNAPSHOT</version>
8   </parent>
9   <artifactId>config-features</artifactId>
10
11   <packaging>pom</packaging>
12
13   <properties>
14     <features.file>features.xml</features.file>
15   </properties>
16
17   <dependencies></dependencies>
18
19   <build>
20     <resources>
21       <resource>
22         <filtering>true</filtering>
23         <directory>src/main/resources</directory>
24       </resource>
25     </resources>
26     <plugins>
27       <plugin>
28         <groupId>org.apache.maven.plugins</groupId>
29         <artifactId>maven-resources-plugin</artifactId>
30         <executions>
31           <execution>
32             <id>filter</id>
33             <goals>
34               <goal>resources</goal>
35             </goals>
36             <phase>generate-resources</phase>
37           </execution>
38         </executions>
39       </plugin>
40       <plugin>
41         <groupId>org.codehaus.mojo</groupId>
42         <artifactId>build-helper-maven-plugin</artifactId>
43         <executions>
44           <execution>
45             <id>attach-artifacts</id>
46             <goals>
47               <goal>attach-artifact</goal>
48             </goals>
49             <phase>package</phase>
50             <configuration>
51               <artifacts>
52                 <artifact>
53                   <file>${project.build.directory}/classes/${features.file}</file>
54                   <type>xml</type>
55                   <classifier>features</classifier>
56                 </artifact>
57               </artifacts>
58             </configuration>
59           </execution>
60         </executions>
61       </plugin>
62     </plugins>
63   </build>
64   <scm>
65     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
66     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
67     <tag>HEAD</tag>
68     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
69   </scm>
70 </project>