Add blueprint wiring for netconf-client
[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.6.0-SNAPSHOT</version>
10         <relativePath/>
11     </parent>
12
13     <groupId>org.opendaylight.netconf</groupId>
14     <artifactId>netconf-topology</artifactId>
15     <version>1.2.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>org.opendaylight.controller</groupId>
45             <artifactId>sal-core-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.controller</groupId>
49             <artifactId>threadpool-config-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.yangtools</groupId>
53             <artifactId>yang-parser-impl</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.netconf</groupId>
57             <artifactId>sal-netconf-connector</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.controller</groupId>
61             <artifactId>sal-common-api</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.mockito</groupId>
65             <artifactId>mockito-all</artifactId>
66             <scope>test</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.yangtools</groupId>
70             <artifactId>yang-model-api</artifactId>
71         </dependency>
72     </dependencies>
73
74     <build>
75         <plugins>
76             <plugin>
77                 <groupId>org.codehaus.mojo</groupId>
78                 <artifactId>build-helper-maven-plugin</artifactId>
79                 <version>1.8</version>
80                 <executions>
81                     <execution>
82                         <id>add-source</id>
83                         <phase>generate-sources</phase>
84                         <goals>
85                             <goal>add-source</goal>
86                         </goals>
87                         <configuration>
88                             <sources>
89                                 <source>${project.build.directory}/generated-sources/config</source>;
90                             </sources>
91                         </configuration>
92                     </execution>
93                 </executions>
94             </plugin>
95         </plugins>
96     </build>
97
98 </project>