Merge "Working md-sal features, including restconf, toaster, flow-services"
[controller.git] / features / config-netty / 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     <relativePath>../../opendaylight/config/</relativePath>
9   </parent>
10   <artifactId>features-config-netty</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>features-config-persister</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>netty-event-executor-config</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>netty-threadgroup-config</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>netty-timer-config</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>threadpool-config-api</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>threadpool-config-impl</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>config-netty-config</artifactId>
49     </dependency>
50   </dependencies>
51
52   <build>
53     <resources>
54       <resource>
55         <filtering>true</filtering>
56         <directory>src/main/resources</directory>
57       </resource>
58     </resources>
59     <plugins>
60       <plugin>
61         <groupId>org.apache.maven.plugins</groupId>
62         <artifactId>maven-resources-plugin</artifactId>
63         <executions>
64           <execution>
65             <id>filter</id>
66             <goals>
67               <goal>resources</goal>
68             </goals>
69             <phase>generate-resources</phase>
70           </execution>
71         </executions>
72       </plugin>
73       <plugin>
74         <groupId>org.codehaus.mojo</groupId>
75         <artifactId>build-helper-maven-plugin</artifactId>
76         <executions>
77           <execution>
78             <id>attach-artifacts</id>
79             <goals>
80               <goal>attach-artifact</goal>
81             </goals>
82             <phase>package</phase>
83             <configuration>
84               <artifacts>
85                 <artifact>
86                   <file>${project.build.directory}/classes/${features.file}</file>
87                   <type>xml</type>
88                   <classifier>features</classifier>
89                 </artifact>
90               </artifacts>
91             </configuration>
92           </execution>
93         </executions>
94       </plugin>
95     </plugins>
96   </build>
97   <scm>
98     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
99     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
100     <tag>HEAD</tag>
101     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
102   </scm>
103 </project>