a9cc3a1c810cc2871f7246e47d0e1fef6df21e88
[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.netconf</groupId>
15         <artifactId>netconf-parent</artifactId>
16         <version>5.0.2-SNAPSHOT</version>
17         <relativePath>../../parent</relativePath>
18     </parent>
19
20     <artifactId>yanglib</artifactId>
21     <packaging>bundle</packaging>
22
23     <build>
24         <plugins>
25             <plugin>
26                 <groupId>org.apache.felix</groupId>
27                 <artifactId>maven-bundle-plugin</artifactId>
28                 <extensions>true</extensions>
29                 <configuration>
30                     <instructions>
31                         <Bundle-Name>YangLib</Bundle-Name>
32                     </instructions>
33                 </configuration>
34             </plugin>
35             <plugin>
36                 <groupId>org.codehaus.mojo</groupId>
37                 <artifactId>build-helper-maven-plugin</artifactId>
38                 <executions>
39                     <execution>
40                         <id>attach-artifacts</id>
41                         <goals>
42                             <goal>attach-artifact</goal>
43                         </goals>
44                         <phase>package</phase>
45                         <configuration>
46                             <artifacts>
47                                 <artifact>
48                                     <file>${project.build.directory}/classes/initial/yanglib-config.xml</file>
49                                     <type>xml</type>
50                                     <classifier>config</classifier>
51                                 </artifact>
52                             </artifacts>
53                         </configuration>
54                     </execution>
55                 </executions>
56             </plugin>
57         </plugins>
58     </build>
59
60     <dependencies>
61         <dependency>
62             <groupId>org.opendaylight.mdsal</groupId>
63             <artifactId>mdsal-binding-api</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>com.google.guava</groupId>
67             <artifactId>guava</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
71             <artifactId>rfc8525</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.yangtools</groupId>
75             <artifactId>yang-parser-impl</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.yangtools</groupId>
79             <artifactId>yang-repo-fs</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.aaa.web</groupId>
83             <artifactId>web-api</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.aaa.web</groupId>
87             <artifactId>servlet-api</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>commons-io</groupId>
91             <artifactId>commons-io</artifactId>
92             <scope>test</scope>
93         </dependency>
94     </dependencies>
95 </project>