Merge "Update comment and remove unwanted FIXME in SchemaSetup"
[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.controller</groupId>
15         <artifactId>config-parent</artifactId>
16         <version>0.5.0-SNAPSHOT</version>
17         <relativePath/>
18     </parent>
19
20     <groupId>org.opendaylight.netconf</groupId>
21     <artifactId>yanglib</artifactId>
22     <version>1.1.0-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         </plugins>
41     </build>
42
43     <dependencyManagement>
44         <dependencies>
45             <dependency>
46                 <groupId>org.opendaylight.netconf</groupId>
47                 <artifactId>netconf-artifacts</artifactId>
48                 <version>${project.version}</version>
49                 <type>pom</type>
50                 <scope>import</scope>
51             </dependency>
52         </dependencies>
53     </dependencyManagement>
54
55     <dependencies>
56         <dependency>
57             <groupId>org.opendaylight.controller</groupId>
58             <artifactId>sal-binding-api</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.controller</groupId>
62             <artifactId>sal-binding-config</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>com.google.guava</groupId>
66             <artifactId>guava</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.netconf</groupId>
70             <artifactId>ietf-netconf-yang-library</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.mockito</groupId>
74             <artifactId>mockito-core</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.jboss.resteasy</groupId>
79             <artifactId>jaxrs-api</artifactId>
80             <scope>provided</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.yangtools</groupId>
84             <artifactId>yang-parser-impl</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.yangtools</groupId>
88             <artifactId>yang-model-util</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>org.opendaylight.yangtools</groupId>
92             <artifactId>yang-model-api</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>org.slf4j</groupId>
96             <artifactId>slf4j-api</artifactId>
97         </dependency>
98     </dependencies>
99 </project>