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