1529ecb2901ebc2367719aaad36f7d723848028c
[netconf.git] / netconf / yanglib / 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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.mdsal</groupId>
15         <artifactId>binding-parent</artifactId>
16         <version>0.11.3-SNAPSHOT</version>
17         <relativePath/>
18     </parent>
19
20     <groupId>org.opendaylight.netconf</groupId>
21     <artifactId>yanglib</artifactId>
22     <version>1.3.3-SNAPSHOT</version>
23     <packaging>bundle</packaging>
24
25     <build>
26         <plugins>
27             <plugin>
28                 <groupId>org.apache.felix</groupId>
29                 <artifactId>maven-bundle-plugin</artifactId>
30                 <extensions>true</extensions>
31                 <configuration>
32                     <instructions>
33                         <Bundle-Name>YangLib</Bundle-Name>
34                         <Import-Package>*,
35                             com.sun.jersey.spi.container.servlet, org.eclipse.jetty.servlets</Import-Package>
36                         <Web-ContextPath>/yanglib</Web-ContextPath>
37                     </instructions>
38                 </configuration>
39             </plugin>
40             <plugin>
41                 <groupId>org.apache.maven.plugins</groupId>
42                 <artifactId>maven-checkstyle-plugin</artifactId>
43                 <configuration>
44                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
45                 </configuration>
46             </plugin>
47         </plugins>
48     </build>
49
50     <dependencyManagement>
51         <dependencies>
52             <dependency>
53                 <groupId>org.opendaylight.netconf</groupId>
54                 <artifactId>netconf-artifacts</artifactId>
55                 <version>${project.version}</version>
56                 <type>pom</type>
57                 <scope>import</scope>
58             </dependency>
59             <dependency>
60                 <groupId>org.opendaylight.controller</groupId>
61                 <artifactId>mdsal-artifacts</artifactId>
62                 <version>1.6.3-SNAPSHOT</version>
63                 <type>pom</type>
64                 <scope>import</scope>
65             </dependency>
66         </dependencies>
67     </dependencyManagement>
68
69     <dependencies>
70         <dependency>
71             <groupId>org.opendaylight.controller</groupId>
72             <artifactId>sal-binding-api</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>com.google.guava</groupId>
76             <artifactId>guava</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.netconf</groupId>
80             <artifactId>ietf-netconf-yang-library</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.mockito</groupId>
84             <artifactId>mockito-core</artifactId>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.jboss.resteasy</groupId>
89             <artifactId>jaxrs-api</artifactId>
90             <scope>provided</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.yangtools</groupId>
94             <artifactId>yang-parser-impl</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.yangtools</groupId>
98             <artifactId>yang-model-util</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.yangtools</groupId>
102             <artifactId>yang-model-api</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>org.slf4j</groupId>
106             <artifactId>slf4j-api</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.powermock</groupId>
110             <artifactId>powermock-module-junit4</artifactId>
111             <scope>test</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.powermock</groupId>
115             <artifactId>powermock-api-mockito</artifactId>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>commons-io</groupId>
120             <artifactId>commons-io</artifactId>
121             <scope>test</scope>
122         </dependency>
123     </dependencies>
124 </project>