6fef98ff361a05842d896d7f901a86ff04c7c783
[controller.git] / opendaylight / netconf / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3
4     <parent>
5         <groupId>org.opendaylight.controller</groupId>
6         <artifactId>commons.opendaylight</artifactId>
7         <version>1.4.2-SNAPSHOT</version>
8         <relativePath>../commons/opendaylight</relativePath>
9     </parent>
10
11     <version>0.2.4-SNAPSHOT</version>
12     <artifactId>netconf-subsystem</artifactId>
13     <packaging>pom</packaging>
14     <name>${project.artifactId}</name>
15     <prerequisites>
16         <maven>3.0.4</maven>
17     </prerequisites>
18
19
20     <modules>
21         <module>netconf-api</module>
22         <module>netconf-impl</module>
23         <module>config-netconf-connector</module>
24         <module>netconf-util</module>
25         <module>config-persister-impl</module>
26         <module>netconf-mapping-api</module>
27         <module>netconf-client</module>
28         <module>netconf-ssh</module>
29         <module>netconf-monitoring</module>
30         <module>ietf-netconf-monitoring</module>
31         <module>ietf-netconf-monitoring-extension</module>
32     </modules>
33
34     <profiles>
35         <profile>
36            <id>integrationtests</id>
37            <activation>
38                <activeByDefault>false</activeByDefault>
39            </activation>
40             <modules>
41               <module>netconf-it</module>
42             </modules>
43         </profile>
44     </profiles>
45
46     <properties>
47         <osgi.version>5.0.0</osgi.version>
48         <maven.bundle.version>2.4.0</maven.bundle.version>
49         <slf4j.version>1.7.2</slf4j.version>
50         <netconf.netty.version>4.0.10.Final</netconf.netty.version>
51         <netconf.version>0.2.4-SNAPSHOT</netconf.version>
52         <config.version>0.2.4-SNAPSHOT</config.version>
53     </properties>
54
55     <dependencies>
56         <dependency>
57             <groupId>junit</groupId>
58             <artifactId>junit</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>ch.qos.logback</groupId>
63             <artifactId>logback-classic</artifactId>
64             <scope>test</scope>
65         </dependency>
66     </dependencies>
67
68     <dependencyManagement>
69         <dependencies>
70             <dependency>
71                 <groupId>org.osgi</groupId>
72                 <artifactId>org.osgi.core</artifactId>
73                 <version>${osgi.version}</version>
74             </dependency>
75             <dependency>
76                 <groupId>${project.groupId}</groupId>
77                 <artifactId>config-api</artifactId>
78                 <version>${config.version}</version>
79             </dependency>
80             <dependency>
81                 <groupId>${project.groupId}</groupId>
82                 <artifactId>config-manager</artifactId>
83                 <version>${config.version}</version>
84             </dependency>
85             <dependency>
86                 <groupId>${project.groupId}</groupId>
87                 <artifactId>config-manager</artifactId>
88                 <version>${config.version}</version>
89                 <type>test-jar</type>
90             </dependency>
91             <dependency>
92                 <groupId>${project.groupId}</groupId>
93                 <artifactId>yang-jmx-generator</artifactId>
94                 <version>${config.version}</version>
95             </dependency>
96             <dependency>
97                 <groupId>${project.groupId}</groupId>
98                 <artifactId>config-util</artifactId>
99                 <version>${config.version}</version>
100             </dependency>
101             <dependency>
102                 <groupId>${project.groupId}</groupId>
103                 <artifactId>yang-store-api</artifactId>
104                 <version>${config.version}</version>
105             </dependency>
106             <dependency>
107                 <groupId>${project.groupId}</groupId>
108                 <artifactId>yang-store-impl</artifactId>
109                 <version>${config.version}</version>
110             </dependency>
111             <dependency>
112                 <groupId>${project.groupId}</groupId>
113                 <artifactId>yang-store-impl</artifactId>
114                 <version>${config.version}</version>
115                 <type>test-jar</type>
116             </dependency>
117             <dependency>
118                 <groupId>${project.groupId}</groupId>
119                 <artifactId>yang-test</artifactId>
120                 <version>${config.version}</version>
121             </dependency>
122             <dependency>
123                 <groupId>${project.groupId}</groupId>
124                 <artifactId>netconf-api</artifactId>
125                 <version>${netconf.version}</version>
126             </dependency>
127             <dependency>
128                 <groupId>${project.groupId}</groupId>
129                 <artifactId>netconf-util</artifactId>
130                 <version>${netconf.version}</version>
131             </dependency>
132             <dependency>
133                 <groupId>${project.groupId}</groupId>
134                 <artifactId>netconf-util</artifactId>
135                 <version>${netconf.version}</version>
136                 <type>test-jar</type>
137             </dependency>
138             <dependency>
139                 <groupId>${project.groupId}</groupId>
140                 <artifactId>netconf-ssh</artifactId>
141                 <version>${netconf.version}</version>
142             </dependency>
143             <dependency>
144                 <groupId>${project.groupId}</groupId>
145                 <artifactId>netconf-ssh</artifactId>
146                 <version>${netconf.version}</version>
147                 <type>test-jar</type>
148             </dependency>
149             <dependency>
150                 <groupId>${project.groupId}</groupId>
151                 <artifactId>netconf-mapping-api</artifactId>
152                 <version>${netconf.version}</version>
153             </dependency>
154             <dependency>
155                 <groupId>${project.groupId}</groupId>
156                 <artifactId>netconf-impl</artifactId>
157                 <version>${netconf.version}</version>
158             </dependency>
159             <dependency>
160                 <groupId>${project.groupId}</groupId>
161                 <artifactId>netconf-monitoring</artifactId>
162                 <version>${netconf.version}</version>
163             </dependency>
164             <dependency>
165                 <groupId>${project.groupId}</groupId>
166                 <artifactId>ietf-netconf-monitoring</artifactId>
167                 <version>${netconf.version}</version>
168             </dependency>
169             <dependency>
170                 <groupId>org.opendaylight.controller</groupId>
171                 <artifactId>config-persister-api</artifactId>
172                 <version>${config.version}</version>
173             </dependency>
174             <dependency>
175                 <groupId>org.opendaylight.controller</groupId>
176                 <artifactId>config-persister-file-adapter</artifactId>
177                 <version>${config.version}</version>
178             </dependency>
179             <dependency>
180                 <groupId>${project.groupId}</groupId>
181                 <artifactId>netconf-client</artifactId>
182                 <version>${netconf.version}</version>
183             </dependency>
184             <dependency>
185                 <groupId>xmlunit</groupId>
186                 <artifactId>xmlunit</artifactId>
187                 <version>1.4</version>
188             </dependency>
189             <dependency>
190                 <groupId>${project.groupId}</groupId>
191                 <artifactId>config-netconf-connector</artifactId>
192                 <version>${netconf.version}</version>
193             </dependency>
194             <dependency>
195                 <groupId>${project.groupId}</groupId>
196                 <artifactId>config-persister-impl</artifactId>
197                 <version>${netconf.version}</version>
198             </dependency>
199             <dependency>
200                 <groupId>org.opendaylight.controller</groupId>
201                 <artifactId>logback-config</artifactId>
202                 <version>${config.version}</version>
203             </dependency>
204         </dependencies>
205     </dependencyManagement>
206
207
208     <build>
209         <plugins>
210             <plugin>
211                 <groupId>org.apache.maven.plugins</groupId>
212                 <artifactId>maven-compiler-plugin</artifactId>
213             </plugin>
214         </plugins>
215         <pluginManagement>
216             <plugins>
217                 <plugin>
218                     <groupId>org.apache.felix</groupId>
219                     <artifactId>maven-bundle-plugin</artifactId>
220                     <version>${maven.bundle.version}</version>
221                     <extensions>true</extensions>
222                     <configuration>
223                         <instructions>
224                             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
225                         </instructions>
226                     </configuration>
227                 </plugin>
228             </plugins>
229
230         </pluginManagement>
231     </build>
232 </project>