386c93fb23b5f153df314681f2981fbb91040efd
[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.7</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.netconf</groupId>
20   <artifactId>netconf-impl</artifactId>
21   <version>1.3.3-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-artifacts</artifactId>
30         <version>${project.version}</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34       <dependency>
35         <groupId>org.opendaylight.yangtools</groupId>
36         <artifactId>yangtools-artifacts</artifactId>
37         <version>1.2.3-SNAPSHOT</version>
38         <type>pom</type>
39         <scope>import</scope>
40       </dependency>
41       <dependency>
42         <groupId>org.opendaylight.controller</groupId>
43         <artifactId>config-artifacts</artifactId>
44         <version>0.7.3-SNAPSHOT</version>
45         <type>pom</type>
46         <scope>import</scope>
47       </dependency>
48     </dependencies>
49   </dependencyManagement>
50
51   <dependencies>
52     <dependency>
53       <groupId>${project.groupId}</groupId>
54       <artifactId>ietf-netconf-monitoring</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>${project.groupId}</groupId>
58       <artifactId>ietf-netconf-monitoring-extension</artifactId>
59     </dependency>
60     <!-- compile dependencies -->
61     <dependency>
62       <groupId>${project.groupId}</groupId>
63       <artifactId>netconf-api</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>${project.groupId}</groupId>
67       <artifactId>netconf-mapping-api</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>${project.groupId}</groupId>
71       <artifactId>netconf-notifications-api</artifactId>
72     </dependency>
73     <dependency>
74        <groupId>${project.groupId}</groupId>
75        <artifactId>netconf-notifications-impl</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>${project.groupId}</groupId>
79       <artifactId>netconf-netty-util</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>${project.groupId}</groupId>
83       <artifactId>netconf-util</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>com.google.guava</groupId>
87       <artifactId>guava</artifactId>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.controller</groupId>
91       <artifactId>threadpool-config-api</artifactId>
92     </dependency>
93     <!-- test dependencies -->
94     <dependency>
95       <groupId>org.opendaylight.yangtools</groupId>
96       <artifactId>mockito-configuration</artifactId>
97     </dependency>
98
99     <dependency>
100       <groupId>org.slf4j</groupId>
101       <artifactId>slf4j-api</artifactId>
102     </dependency>
103     <dependency>
104       <groupId>org.slf4j</groupId>
105       <artifactId>slf4j-simple</artifactId>
106       <scope>test</scope>
107     </dependency>
108     <dependency>
109       <groupId>${project.groupId}</groupId>
110       <artifactId>netconf-client</artifactId>
111       <scope>test</scope>
112     </dependency>
113     <dependency>
114       <groupId>${project.groupId}</groupId>
115       <artifactId>netconf-client</artifactId>
116       <type>test-jar</type>
117       <scope>test</scope>
118     </dependency>
119     <dependency>
120       <groupId>${project.groupId}</groupId>
121       <artifactId>netconf-util</artifactId>
122       <type>test-jar</type>
123       <scope>test</scope>
124     </dependency>
125
126     <dependency>
127       <groupId>xmlunit</groupId>
128       <artifactId>xmlunit</artifactId>
129       <scope>test</scope>
130     </dependency>
131     <dependency>
132       <groupId>org.osgi</groupId>
133       <artifactId>org.osgi.compendium</artifactId>
134     </dependency>
135   </dependencies>
136
137   <build>
138     <plugins>
139       <plugin>
140         <groupId>org.apache.felix</groupId>
141         <artifactId>maven-bundle-plugin</artifactId>
142         <configuration>
143           <instructions>
144             <Bundle-Activator>org.opendaylight.netconf.impl.osgi.NetconfImplActivator</Bundle-Activator>
145             <Export-Package>org.opendaylight.netconf.impl.*</Export-Package>
146           </instructions>
147         </configuration>
148       </plugin>
149       <plugin>
150         <groupId>org.apache.maven.plugins</groupId>
151         <artifactId>maven-jar-plugin</artifactId>
152         <executions>
153           <execution>
154             <goals>
155               <goal>test-jar</goal>
156             </goals>
157             <phase>package</phase>
158           </execution>
159         </executions>
160       </plugin>
161       <plugin>
162         <groupId>org.apache.maven.plugins</groupId>
163         <artifactId>maven-checkstyle-plugin</artifactId>
164         <configuration>
165           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
166         </configuration>
167       </plugin>
168     </plugins>
169   </build>
170
171 </project>