Cleanup project structure and dependencies
[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.controller</groupId>
7     <artifactId>netconf-parent</artifactId>
8     <version>0.4.0-SNAPSHOT</version>
9     <relativePath>../../pom.xml</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>netconf-util</module>
24     <module>netconf-netty-util</module>
25     <module>netconf-mapping-api</module>
26     <module>netconf-client</module>
27     <module>netconf-config-dispatcher</module>
28     <module>netconf-ssh</module>
29     <module>netconf-tcp</module>
30     <module>netconf-monitoring</module>
31     <module>netconf-connector-config</module>
32     <module>netconf-mdsal-config</module>
33     <module>netconf-auth</module>
34     <module>netconf-notifications-impl</module>
35     <module>netconf-notifications-api</module>
36     <module>sal-netconf-connector</module>
37     <module>messagebus-netconf</module>
38     <module>features</module>
39     <module>models</module>
40     <module>tools</module>
41
42     <module>netconf-artifacts</module>
43   </modules>
44
45   <dependencies>
46     <dependency>
47       <groupId>org.osgi</groupId>
48       <artifactId>org.osgi.core</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>ch.qos.logback</groupId>
52       <artifactId>logback-classic</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>junit</groupId>
57       <artifactId>junit</artifactId>
58       <scope>test</scope>
59     </dependency>
60   </dependencies>
61
62   <dependencyManagement>
63     <dependencies>
64       <dependency>
65         <groupId>org.opendaylight.controller</groupId>
66         <artifactId>config-artifacts</artifactId>
67         <version>${config.version}</version>
68         <type>pom</type>
69         <scope>import</scope>
70       </dependency>
71       <dependency>
72         <groupId>org.opendaylight.controller</groupId>
73         <artifactId>mdsal-artifacts</artifactId>
74         <version>${mdsal.version}</version>
75         <type>pom</type>
76         <scope>import</scope>
77       </dependency>
78       <dependency>
79         <groupId>org.opendaylight.controller</groupId>
80         <artifactId>netconf-artifacts</artifactId>
81         <version>${netconf.version}</version>
82         <type>pom</type>
83         <scope>import</scope>
84       </dependency>
85       <dependency>
86         <groupId>org.opendaylight.yangtools</groupId>
87         <artifactId>yangtools-artifacts</artifactId>
88         <version>${yangtools.version}</version>
89         <type>pom</type>
90         <scope>import</scope>
91       </dependency>
92
93       <dependency>
94         <groupId>org.opendaylight.controller</groupId>
95         <artifactId>features-protocol-framework</artifactId>
96         <version>${protocol-framework.version}</version>
97         <classifier>features</classifier>
98         <type>xml</type>
99         <scope>runtime</scope>
100       </dependency>
101
102       <dependency>
103         <groupId>org.opendaylight.controller</groupId>
104         <artifactId>protocol-framework</artifactId>
105         <version>${protocol-framework.version}</version>
106       </dependency>
107
108       <dependency>
109         <groupId>org.opendaylight.controller</groupId>
110         <artifactId>messagebus-api</artifactId>
111         <version>${mdsal.version}</version>
112       </dependency>
113       <dependency>
114         <groupId>org.opendaylight.controller</groupId>
115         <artifactId>messagebus-config</artifactId>
116         <version>${mdsal.version}</version>
117       </dependency>
118       <dependency>
119         <groupId>org.opendaylight.controller</groupId>
120         <artifactId>messagebus-impl</artifactId>
121         <version>${mdsal.version}</version>
122       </dependency>
123       <dependency>
124         <groupId>org.opendaylight.controller</groupId>
125         <artifactId>messagebus-spi</artifactId>
126         <version>${mdsal.version}</version>
127       </dependency>
128       <dependency>
129         <groupId>org.opendaylight.controller</groupId>
130         <artifactId>messagebus-util</artifactId>
131         <version>${mdsal.version}</version>
132       </dependency>
133
134       <dependency>
135         <groupId>org.apache.sshd</groupId>
136         <artifactId>sshd-core</artifactId>
137         <version>${sshd-core.version}</version>
138       </dependency>
139       <dependency>
140         <groupId>openexi</groupId>
141         <artifactId>nagasena</artifactId>
142         <version>${exi.nagasena.version}</version>
143       </dependency>
144       <dependency>
145         <groupId>openexi</groupId>
146         <artifactId>nagasena-rta</artifactId>
147         <version>${exi.nagasena.version}</version>
148       </dependency>
149       <dependency>
150         <groupId>org.opendaylight.yangtools</groupId>
151         <artifactId>maven-sal-api-gen-plugin</artifactId>
152         <version>${yangtools.version}</version>
153       </dependency>
154
155       <dependency>
156         <groupId>org.opendaylight.controller</groupId>
157         <artifactId>yang-jmx-generator-plugin</artifactId>
158         <version>${config.version}</version>
159       </dependency>
160
161       <dependency>
162         <groupId>org.opendaylight.controller</groupId>
163         <artifactId>commons.logback_settings</artifactId>
164         <version>${commons.logback_settings.version}</version>
165         <scope>test</scope>
166       </dependency>
167       <dependency>
168         <groupId>org.opendaylight.odlparent</groupId>
169         <artifactId>features-test</artifactId>
170         <version>${features.test.version}</version>
171         <scope>test</scope>
172       </dependency>
173
174     </dependencies>
175   </dependencyManagement>
176
177   <profiles>
178     <profile>
179       <id>integrationtests</id>
180       <activation>
181         <activeByDefault>false</activeByDefault>
182       </activation>
183       <modules>
184         <module>netconf-it</module>
185       </modules>
186     </profile>
187   </profiles>
188 </project>