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