Merge "Bug 279, 1390: Used Guava Cache r for lazy-loading of RPC Routers"
[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>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>config-features</artifactId>
22       <version>${config.version}</version>
23       <classifier>features</classifier>
24       <type>xml</type>
25       <scope>runtime</scope>
26     </dependency>
27   </dependencies>
28
29   <build>
30     <resources>
31       <resource>
32         <filtering>true</filtering>
33         <directory>src/main/resources</directory>
34       </resource>
35     </resources>
36     <plugins>
37       <plugin>
38         <groupId>org.apache.maven.plugins</groupId>
39         <artifactId>maven-resources-plugin</artifactId>
40         <executions>
41           <execution>
42             <id>filter</id>
43             <goals>
44               <goal>resources</goal>
45             </goals>
46             <phase>generate-resources</phase>
47           </execution>
48         </executions>
49       </plugin>
50       <plugin>
51         <groupId>org.codehaus.mojo</groupId>
52         <artifactId>build-helper-maven-plugin</artifactId>
53         <executions>
54           <execution>
55             <id>attach-artifacts</id>
56             <goals>
57               <goal>attach-artifact</goal>
58             </goals>
59             <phase>package</phase>
60             <configuration>
61               <artifacts>
62                 <artifact>
63                   <file>${project.build.directory}/classes/${features.file}</file>
64                   <type>xml</type>
65                   <classifier>features</classifier>
66                 </artifact>
67               </artifacts>
68             </configuration>
69           </execution>
70         </executions>
71       </plugin>
72     </plugins>
73   </build>
74   <scm>
75     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
76     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
77     <tag>HEAD</tag>
78     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
79   </scm>
80 </project>