Merge "Bug 4940 - correctly implement default-request-timeout-millis"
[netconf.git] / netconf / netconf-topology / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <groupId>org.opendaylight.controller</groupId>
8         <artifactId>config-parent</artifactId>
9         <version>0.5.0-SNAPSHOT</version>
10         <relativePath/>
11     </parent>
12
13     <groupId>org.opendaylight.netconf</groupId>
14     <artifactId>netconf-topology</artifactId>
15     <version>1.1.0-SNAPSHOT</version>
16     <packaging>bundle</packaging>
17
18     <dependencyManagement>
19         <dependencies>
20             <dependency>
21                 <groupId>org.opendaylight.netconf</groupId>
22                 <artifactId>netconf-subsystem</artifactId>
23                 <version>${project.version}</version>
24                 <type>pom</type>
25                 <scope>import</scope>
26             </dependency>
27         </dependencies>
28     </dependencyManagement>
29
30     <dependencies>
31         <dependency>
32             <groupId>org.opendaylight.controller</groupId>
33             <artifactId>sal-binding-api</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.controller</groupId>
37             <artifactId>sal-binding-config</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.mdsal</groupId>
41             <artifactId>mdsal-binding-generator-impl</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>netconf-config-dispatcher</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.controller</groupId>
49             <artifactId>sal-core-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.controller</groupId>
53             <artifactId>threadpool-config-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.yangtools</groupId>
57             <artifactId>yang-parser-impl</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.netconf</groupId>
61             <artifactId>sal-netconf-connector</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.controller</groupId>
65             <artifactId>sal-clustering-commons</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.controller</groupId>
69             <artifactId>sal-common-api</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.netconf</groupId>
73             <artifactId>abstract-topology</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>com.typesafe</groupId>
77             <artifactId>config</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.mockito</groupId>
81             <artifactId>mockito-all</artifactId>
82             <version>1.9.5</version>
83             <scope>test</scope>
84         </dependency>
85         <dependency>
86             <groupId>com.jayway.awaitility</groupId>
87             <artifactId>awaitility</artifactId>
88             <version>1.6.5</version>
89             <scope>test</scope>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.yangtools</groupId>
93             <artifactId>yang-model-api</artifactId>
94         </dependency>
95     </dependencies>
96
97     <build>
98         <plugins>
99             <plugin>
100                 <groupId>org.codehaus.mojo</groupId>
101                 <artifactId>build-helper-maven-plugin</artifactId>
102                 <version>1.8</version>
103                 <executions>
104                     <execution>
105                         <id>add-source</id>
106                         <phase>generate-sources</phase>
107                         <goals>
108                             <goal>add-source</goal>
109                         </goals>
110                         <configuration>
111                             <sources>
112                                 <source>${project.build.directory}/generated-sources/config</source>;
113                             </sources>
114                         </configuration>
115                     </execution>
116                 </executions>
117             </plugin>
118         </plugins>
119     </build>
120
121 </project>