Fix BindingRuntimeContext stubbing
[netconf.git] / opendaylight / 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
5   <parent>
6     <groupId>org.opendaylight.netconf</groupId>
7     <artifactId>netconf-parent</artifactId>
8     <version>1.0.0-SNAPSHOT</version>
9     <relativePath>../..</relativePath>
10   </parent>
11
12   <artifactId>netconf-subsystem</artifactId>
13   <packaging>pom</packaging>
14   <name>${project.artifactId}</name>
15
16   <modules>
17     <module>netconf-api</module>
18     <module>netconf-config</module>
19     <module>netconf-impl</module>
20     <module>config-netconf-connector</module>
21     <module>mdsal-netconf-connector</module>
22     <module>mdsal-netconf-monitoring</module>
23     <module>mdsal-netconf-notification</module>
24     <module>netconf-util</module>
25     <module>netconf-netty-util</module>
26     <module>netconf-mapping-api</module>
27     <module>netconf-client</module>
28     <module>netconf-config-dispatcher</module>
29     <module>netconf-ssh</module>
30     <module>netconf-tcp</module>
31     <module>netconf-monitoring</module>
32     <module>netconf-connector-config</module>
33     <module>netconf-mdsal-config</module>
34     <module>netconf-auth</module>
35     <module>aaa-authn-odl-plugin</module>
36     <module>netconf-notifications-impl</module>
37     <module>netconf-notifications-api</module>
38     <module>netconf-topology</module>
39     <module>netconf-topology-config</module>
40     <module>sal-netconf-connector</module>
41     <module>messagebus-netconf</module>
42     <module>models</module>
43     <module>tools</module>
44
45     <module>netconf-artifacts</module>
46   </modules>
47
48   <dependencies>
49     <dependency>
50       <groupId>org.osgi</groupId>
51       <artifactId>org.osgi.core</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>ch.qos.logback</groupId>
55       <artifactId>logback-classic</artifactId>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>junit</groupId>
60       <artifactId>junit</artifactId>
61       <scope>test</scope>
62     </dependency>
63   </dependencies>
64
65   <dependencyManagement>
66     <dependencies>
67       <dependency>
68         <groupId>org.opendaylight.netconf</groupId>
69         <artifactId>netconf-artifacts</artifactId>
70         <version>${netconf.version}</version>
71         <type>pom</type>
72         <scope>import</scope>
73       </dependency>
74       <dependency>
75         <groupId>org.opendaylight.yangtools</groupId>
76         <artifactId>yangtools-artifacts</artifactId>
77         <version>${yangtools.version}</version>
78         <type>pom</type>
79         <scope>import</scope>
80       </dependency>
81
82       <dependency>
83         <groupId>org.opendaylight.controller</groupId>
84         <artifactId>protocol-framework</artifactId>
85         <version>${protocol-framework.version}</version>
86       </dependency>
87
88       <dependency>
89         <groupId>org.opendaylight.controller</groupId>
90         <artifactId>messagebus-api</artifactId>
91         <version>${controller.mdsal.version}</version>
92       </dependency>
93       <dependency>
94         <groupId>org.opendaylight.controller</groupId>
95         <artifactId>messagebus-config</artifactId>
96         <version>${controller.mdsal.version}</version>
97       </dependency>
98       <dependency>
99         <groupId>org.opendaylight.controller</groupId>
100         <artifactId>messagebus-impl</artifactId>
101         <version>${controller.mdsal.version}</version>
102       </dependency>
103       <dependency>
104         <groupId>org.opendaylight.controller</groupId>
105         <artifactId>messagebus-spi</artifactId>
106         <version>${controller.mdsal.version}</version>
107       </dependency>
108       <dependency>
109         <groupId>org.opendaylight.controller</groupId>
110         <artifactId>messagebus-util</artifactId>
111         <version>${controller.mdsal.version}</version>
112       </dependency>
113
114       <dependency>
115         <groupId>org.apache.sshd</groupId>
116         <artifactId>sshd-core</artifactId>
117         <version>${sshd-core.version}</version>
118       </dependency>
119       <dependency>
120         <groupId>openexi</groupId>
121         <artifactId>nagasena</artifactId>
122         <version>${exi.nagasena.version}</version>
123       </dependency>
124       <dependency>
125         <groupId>openexi</groupId>
126         <artifactId>nagasena-rta</artifactId>
127         <version>${exi.nagasena.version}</version>
128       </dependency>
129       <dependency>
130         <groupId>org.opendaylight.mdsal</groupId>
131         <artifactId>maven-sal-api-gen-plugin</artifactId>
132         <version>${yangtools.version}</version>
133       </dependency>
134
135       <dependency>
136         <groupId>org.opendaylight.controller</groupId>
137         <artifactId>yang-jmx-generator-plugin</artifactId>
138         <version>${config.version}</version>
139       </dependency>
140
141       <dependency>
142         <groupId>org.opendaylight.controller</groupId>
143         <artifactId>commons.logback_settings</artifactId>
144         <version>${commons.logback_settings.version}</version>
145         <scope>test</scope>
146       </dependency>
147       <dependency>
148         <groupId>org.opendaylight.odlparent</groupId>
149         <artifactId>features-test</artifactId>
150         <version>${features.test.version}</version>
151         <scope>test</scope>
152       </dependency>
153
154     </dependencies>
155   </dependencyManagement>
156 </project>