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