bump netty to version 4.0.10.Final
[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     <groupId>org.opendaylight.controller</groupId>
13     <version>0.2.1-SNAPSHOT</version>
14     <artifactId>netconf-subsystem</artifactId>
15     <packaging>pom</packaging>
16     <name>${project.artifactId}</name>
17     <prerequisites>
18         <maven>3.0.4</maven>
19     </prerequisites>
20
21
22     <modules>
23         <module>netconf-api</module>
24         <module>netconf-impl</module>
25         <module>config-netconf-connector</module>
26         <module>netconf-util</module>
27         <module>netconf-it</module>
28         <module>config-persister-impl</module>
29         <module>netconf-mapping-api</module>
30         <module>netconf-client</module>
31     </modules>
32
33     <properties>
34         <osgi.version>5.0.0</osgi.version>
35         <maven.bundle.version>2.3.7</maven.bundle.version>
36         <slf4j.version>1.7.2</slf4j.version>
37         <java.version.source>1.7</java.version.source>
38         <java.version.target>1.7</java.version.target>
39         <netconf.netty.version>4.0.10.Final</netconf.netty.version>
40     </properties>
41
42     <dependencies>
43         <dependency>
44             <groupId>junit</groupId>
45             <artifactId>junit</artifactId>
46             <scope>test</scope>
47         </dependency>
48         <dependency>
49             <groupId>ch.qos.logback</groupId>
50             <artifactId>logback-classic</artifactId>
51             <scope>test</scope>
52         </dependency>
53     </dependencies>
54
55     <dependencyManagement>
56         <dependencies>
57             <dependency>
58                 <groupId>org.osgi</groupId>
59                 <artifactId>org.osgi.core</artifactId>
60                 <version>${osgi.version}</version>
61             </dependency>
62             <dependency>
63                 <groupId>org.opendaylight.bgpcep</groupId>
64                 <artifactId>mockito-configuration</artifactId>
65                 <version>${bgpcep.version}</version>
66                 <scope>test</scope>
67             </dependency>
68             <dependency>
69                 <groupId>${project.groupId}</groupId>
70                 <artifactId>config-api</artifactId>
71                 <version>${config.version}</version>
72             </dependency>
73             <dependency>
74                 <groupId>${project.groupId}</groupId>
75                 <artifactId>config-manager</artifactId>
76                 <version>${config.version}</version>
77             </dependency>
78             <dependency>
79                 <groupId>${project.groupId}</groupId>
80                 <artifactId>yang-jmx-generator</artifactId>
81                 <version>${config.version}</version>
82             </dependency>
83             <dependency>
84                 <groupId>${project.groupId}</groupId>
85                 <artifactId>config-util</artifactId>
86                 <version>${config.version}</version>
87             </dependency>
88             <dependency>
89                 <groupId>${project.groupId}</groupId>
90                 <artifactId>yang-store-api</artifactId>
91                 <version>${config.version}</version>
92             </dependency>
93             <dependency>
94                 <groupId>${project.groupId}</groupId>
95                 <artifactId>yang-store-impl</artifactId>
96                 <version>${config.version}</version>
97             </dependency>
98             <dependency>
99                 <groupId>${project.groupId}</groupId>
100                 <artifactId>yang-test</artifactId>
101                 <version>${config.version}</version>
102             </dependency>
103         </dependencies>
104     </dependencyManagement>
105
106
107     <build>
108         <plugins>
109             <plugin>
110                 <groupId>org.apache.maven.plugins</groupId>
111                 <artifactId>maven-compiler-plugin</artifactId>
112                 <version>2.5.1</version>
113                 <configuration>
114                     <source>${java.version.source}</source>
115                     <target>${java.version.target}</target>
116                     <testSource>${java.version.source}</testSource>
117                     <testTarget>${java.version.target}</testTarget>
118                 </configuration>
119             </plugin>
120         </plugins>
121         <pluginManagement>
122             <plugins>
123                 <plugin>
124                     <groupId>org.apache.felix</groupId>
125                     <artifactId>maven-bundle-plugin</artifactId>
126                     <version>${maven.bundle.version}</version>
127                     <extensions>true</extensions>
128                     <configuration>
129                         <instructions>
130                             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
131                         </instructions>
132                     </configuration>
133                 </plugin>
134             </plugins>
135
136         </pluginManagement>
137     </build>
138     <!--
139     <repositories>
140         <repository>
141             <id>opendaylight-snapshot</id>
142             <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot</url>
143             <snapshots>
144                 <updatePolicy>daily</updatePolicy>
145             </snapshots>
146         </repository>
147     </repositories>
148     -->
149 </project>