Add change notification functionality to yang-store.
[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.2-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>netconf-it</module>
27         <module>config-persister-impl</module>
28         <module>netconf-mapping-api</module>
29         <module>netconf-client</module>
30     </modules>
31
32     <properties>
33         <osgi.version>5.0.0</osgi.version>
34         <maven.bundle.version>2.3.7</maven.bundle.version>
35         <slf4j.version>1.7.2</slf4j.version>
36         <java.version.source>1.7</java.version.source>
37         <java.version.target>1.7</java.version.target>
38         <netconf.netty.version>4.0.10.Final</netconf.netty.version>
39     </properties>
40
41     <dependencies>
42         <dependency>
43             <groupId>junit</groupId>
44             <artifactId>junit</artifactId>
45             <scope>test</scope>
46         </dependency>
47         <dependency>
48             <groupId>ch.qos.logback</groupId>
49             <artifactId>logback-classic</artifactId>
50             <scope>test</scope>
51         </dependency>
52     </dependencies>
53
54     <dependencyManagement>
55         <dependencies>
56             <dependency>
57                 <groupId>org.osgi</groupId>
58                 <artifactId>org.osgi.core</artifactId>
59                 <version>${osgi.version}</version>
60             </dependency>
61             <dependency>
62                 <groupId>org.opendaylight.bgpcep</groupId>
63                 <artifactId>mockito-configuration</artifactId>
64                 <version>${bgpcep.version}</version>
65                 <scope>test</scope>
66             </dependency>
67             <dependency>
68                 <groupId>${project.groupId}</groupId>
69                 <artifactId>config-api</artifactId>
70                 <version>${config.version}</version>
71             </dependency>
72             <dependency>
73                 <groupId>${project.groupId}</groupId>
74                 <artifactId>config-manager</artifactId>
75                 <version>${config.version}</version>
76             </dependency>
77             <dependency>
78                 <groupId>${project.groupId}</groupId>
79                 <artifactId>config-manager</artifactId>
80                 <version>${config.version}</version>
81                 <type>test-jar</type>
82             </dependency>
83             <dependency>
84                 <groupId>${project.groupId}</groupId>
85                 <artifactId>yang-jmx-generator</artifactId>
86                 <version>${config.version}</version>
87             </dependency>
88             <dependency>
89                 <groupId>${project.groupId}</groupId>
90                 <artifactId>config-util</artifactId>
91                 <version>${config.version}</version>
92             </dependency>
93             <dependency>
94                 <groupId>${project.groupId}</groupId>
95                 <artifactId>yang-store-api</artifactId>
96                 <version>${config.yangstore.version}</version>
97             </dependency>
98             <dependency>
99                 <groupId>${project.groupId}</groupId>
100                 <artifactId>yang-store-impl</artifactId>
101                 <version>${config.yangstore.version}</version>
102             </dependency>
103             <dependency>
104                 <groupId>${project.groupId}</groupId>
105                 <artifactId>yang-store-impl</artifactId>
106                 <version>${config.version}</version>
107                 <type>test-jar</type>
108             </dependency>
109             <dependency>
110                 <groupId>${project.groupId}</groupId>
111                 <artifactId>yang-test</artifactId>
112                 <version>${config.version}</version>
113             </dependency>
114             <dependency>
115                 <groupId>${project.groupId}</groupId>
116                 <artifactId>netconf-api</artifactId>
117                 <version>${netconf.version}</version>
118             </dependency>
119             <dependency>
120                 <groupId>${project.groupId}</groupId>
121                 <artifactId>netconf-util</artifactId>
122                 <version>${netconf.version}</version>
123             </dependency>
124             <dependency>
125                 <groupId>${project.groupId}</groupId>
126                 <artifactId>netconf-util</artifactId>
127                 <version>${netconf.version}</version>
128                 <type>test-jar</type>
129             </dependency>
130             <dependency>
131                 <groupId>${project.groupId}</groupId>
132                 <artifactId>netconf-mapping-api</artifactId>
133                 <version>${netconf.version}</version>
134             </dependency>
135             <dependency>
136                 <groupId>${project.groupId}</groupId>
137                 <artifactId>netconf-impl</artifactId>
138                 <version>${netconf.version}</version>
139             </dependency>
140             <dependency>
141                 <groupId>org.opendaylight.controller</groupId>
142                 <artifactId>config-persister-api</artifactId>
143                 <version>${config.version}</version>
144             </dependency>
145             <dependency>
146                 <groupId>org.opendaylight.controller</groupId>
147                 <artifactId>config-persister-file-adapter</artifactId>
148                 <version>${config.version}</version>
149             </dependency>
150             <dependency>
151                 <groupId>${project.groupId}</groupId>
152                 <artifactId>netconf-client</artifactId>
153                 <version>${netconf.version}</version>
154             </dependency>
155             <dependency>
156                 <groupId>xmlunit</groupId>
157                 <artifactId>xmlunit</artifactId>
158                 <version>1.4</version>
159             </dependency>
160             <dependency>
161                 <groupId>${project.groupId}</groupId>
162                 <artifactId>config-netconf-connector</artifactId>
163                 <version>${netconf.version}</version>
164             </dependency>
165             <dependency>
166                 <groupId>${project.groupId}</groupId>
167                 <artifactId>config-persister-impl</artifactId>
168                 <version>${netconf.version}</version>
169             </dependency>
170             <dependency>
171                 <groupId>org.opendaylight.controller</groupId>
172                 <artifactId>logback-config</artifactId>
173                 <version>${config.version}</version>
174             </dependency>
175         </dependencies>
176     </dependencyManagement>
177
178
179     <build>
180         <plugins>
181             <plugin>
182                 <groupId>org.apache.maven.plugins</groupId>
183                 <artifactId>maven-compiler-plugin</artifactId>
184                 <version>2.5.1</version>
185                 <configuration>
186                     <source>${java.version.source}</source>
187                     <target>${java.version.target}</target>
188                     <testSource>${java.version.source}</testSource>
189                     <testTarget>${java.version.target}</testTarget>
190                 </configuration>
191             </plugin>
192         </plugins>
193         <pluginManagement>
194             <plugins>
195                 <plugin>
196                     <groupId>org.apache.felix</groupId>
197                     <artifactId>maven-bundle-plugin</artifactId>
198                     <version>${maven.bundle.version}</version>
199                     <extensions>true</extensions>
200                     <configuration>
201                         <instructions>
202                             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
203                         </instructions>
204                     </configuration>
205                 </plugin>
206             </plugins>
207
208         </pluginManagement>
209     </build>
210 </project>