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