Merge "Remove the need for synthetic methods"
[netconf.git] / netconf / netconf-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>bundle-parent</artifactId>
15     <version>2.0.0</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.netconf</groupId>
20   <artifactId>netconf-impl</artifactId>
21   <version>1.3.0-SNAPSHOT</version>
22   <name>${project.artifactId}</name>
23   <packaging>bundle</packaging>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.netconf</groupId>
29         <artifactId>netconf-subsystem</artifactId>
30         <version>${project.version}</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34     </dependencies>
35   </dependencyManagement>
36
37   <dependencies>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>ietf-netconf-monitoring</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>${project.groupId}</groupId>
44       <artifactId>ietf-netconf-monitoring-extension</artifactId>
45     </dependency>
46     <!-- compile dependencies -->
47     <dependency>
48       <groupId>${project.groupId}</groupId>
49       <artifactId>netconf-api</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>${project.groupId}</groupId>
53       <artifactId>netconf-mapping-api</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>netconf-notifications-api</artifactId>
58     </dependency>
59     <dependency>
60        <groupId>${project.groupId}</groupId>
61        <artifactId>netconf-notifications-impl</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>${project.groupId}</groupId>
65       <artifactId>netconf-netty-util</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>${project.groupId}</groupId>
69       <artifactId>netconf-util</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>com.google.guava</groupId>
73       <artifactId>guava</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.controller</groupId>
77       <artifactId>config-util</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.controller</groupId>
81       <artifactId>protocol-framework</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.controller</groupId>
85       <artifactId>threadpool-config-api</artifactId>
86     </dependency>
87     <!-- test dependencies -->
88     <dependency>
89       <groupId>org.opendaylight.yangtools</groupId>
90       <artifactId>mockito-configuration</artifactId>
91     </dependency>
92
93     <dependency>
94       <groupId>org.opendaylight.mdsal.model</groupId>
95       <artifactId>ietf-inet-types-2013-07-15</artifactId>
96     </dependency>
97
98     <dependency>
99       <groupId>org.slf4j</groupId>
100       <artifactId>slf4j-api</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.slf4j</groupId>
104       <artifactId>slf4j-simple</artifactId>
105       <scope>test</scope>
106     </dependency>
107     <dependency>
108       <groupId>${project.groupId}</groupId>
109       <artifactId>netconf-client</artifactId>
110       <scope>test</scope>
111     </dependency>
112     <dependency>
113       <groupId>${project.groupId}</groupId>
114       <artifactId>netconf-client</artifactId>
115       <type>test-jar</type>
116       <scope>test</scope>
117     </dependency>
118     <dependency>
119       <groupId>${project.groupId}</groupId>
120       <artifactId>netconf-util</artifactId>
121       <type>test-jar</type>
122       <scope>test</scope>
123     </dependency>
124
125     <dependency>
126       <groupId>xmlunit</groupId>
127       <artifactId>xmlunit</artifactId>
128       <scope>test</scope>
129     </dependency>
130     <dependency>
131       <groupId>org.osgi</groupId>
132       <artifactId>org.osgi.compendium</artifactId>
133     </dependency>
134   </dependencies>
135
136   <build>
137     <plugins>
138       <plugin>
139         <groupId>org.apache.felix</groupId>
140         <artifactId>maven-bundle-plugin</artifactId>
141         <configuration>
142           <instructions>
143             <Bundle-Activator>org.opendaylight.netconf.impl.osgi.NetconfImplActivator</Bundle-Activator>
144             <Export-Package>org.opendaylight.netconf.impl.*</Export-Package>
145           </instructions>
146         </configuration>
147       </plugin>
148       <plugin>
149         <groupId>org.apache.maven.plugins</groupId>
150         <artifactId>maven-jar-plugin</artifactId>
151         <executions>
152           <execution>
153             <goals>
154               <goal>test-jar</goal>
155             </goals>
156             <phase>package</phase>
157           </execution>
158         </executions>
159       </plugin>
160       <plugin>
161         <groupId>org.apache.maven.plugins</groupId>
162         <artifactId>maven-checkstyle-plugin</artifactId>
163         <configuration>
164           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
165         </configuration>
166       </plugin>
167     </plugins>
168   </build>
169
170 </project>