8f1bff932b94b438f4474698b7a8f4e4885957e2
[netconf.git] / netconf / mdsal-netconf-monitoring / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2015 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   <parent>
12     <groupId>org.opendaylight.odlparent</groupId>
13     <artifactId>bundle-parent</artifactId>
14     <version>2.0.7</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.netconf</groupId>
19   <artifactId>mdsal-netconf-monitoring</artifactId>
20   <version>1.3.3-SNAPSHOT</version>
21   <name>${project.artifactId}</name>
22   <packaging>bundle</packaging>
23
24   <dependencyManagement>
25     <dependencies>
26       <dependency>
27         <groupId>org.opendaylight.netconf</groupId>
28         <artifactId>netconf-artifacts</artifactId>
29         <version>${project.version}</version>
30         <type>pom</type>
31         <scope>import</scope>
32       </dependency>
33       <dependency>
34         <groupId>org.opendaylight.mdsal.model</groupId>
35         <artifactId>mdsal-model-artifacts</artifactId>
36         <version>0.11.3-SNAPSHOT</version>
37         <type>pom</type>
38         <scope>import</scope>
39       </dependency>
40       <dependency>
41         <groupId>org.opendaylight.yangtools</groupId>
42         <artifactId>yangtools-artifacts</artifactId>
43         <version>1.2.3-SNAPSHOT</version>
44         <type>pom</type>
45         <scope>import</scope>
46       </dependency>
47       <dependency>
48         <groupId>org.opendaylight.controller</groupId>
49         <artifactId>mdsal-artifacts</artifactId>
50         <version>1.6.3-SNAPSHOT</version>
51         <type>pom</type>
52         <scope>import</scope>
53       </dependency>
54     </dependencies>
55   </dependencyManagement>
56
57   <dependencies>
58     <!-- compile dependencies -->
59     <dependency>
60       <groupId>${project.groupId}</groupId>
61       <artifactId>netconf-api</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>${project.groupId}</groupId>
65       <artifactId>netconf-mapping-api</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>${project.groupId}</groupId>
69       <artifactId>netconf-monitoring</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>${project.groupId}</groupId>
73       <artifactId>netconf-util</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.controller</groupId>
77       <artifactId>sal-binding-api</artifactId>
78      </dependency>
79     <dependency>
80       <groupId>org.opendaylight.controller</groupId>
81       <artifactId>sal-common-util</artifactId>
82      </dependency>
83
84     <dependency>
85       <groupId>com.google.guava</groupId>
86       <artifactId>guava</artifactId>
87     </dependency>
88
89     <dependency>
90       <groupId>org.opendaylight.yangtools</groupId>
91       <artifactId>mockito-configuration</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.mdsal.model</groupId>
95       <artifactId>ietf-inet-types-2013-07-15</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.slf4j</groupId>
99       <artifactId>slf4j-api</artifactId>
100     </dependency>
101   </dependencies>
102
103   <build>
104     <plugins>
105       <plugin>
106         <groupId>org.apache.maven.plugins</groupId>
107         <artifactId>maven-checkstyle-plugin</artifactId>
108         <configuration>
109           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
110         </configuration>
111       </plugin>
112     </plugins>
113   </build>
114
115 </project>