Bug 1459-1 - Re-organize mdsal-binding2-spec
[mdsal.git] / binding2 / mdsal-binding2-util / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2017 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
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13
14     <parent>
15         <groupId>org.opendaylight.odlparent</groupId>
16         <artifactId>bundle-parent</artifactId>
17         <version>1.8.0-SNAPSHOT</version>
18         <relativePath/>
19     </parent>
20
21     <modelVersion>4.0.0</modelVersion>
22     <groupId>org.opendaylight.mdsal</groupId>
23     <artifactId>mdsal-binding2-util</artifactId>
24     <version>0.10.0-SNAPSHOT</version>
25     <packaging>bundle</packaging>
26     <name>${project.artifactId}</name>
27     <description>${project.artifactId}</description>
28
29     <dependencyManagement>
30         <dependencies>
31               <dependency>
32                 <groupId>org.opendaylight.yangtools</groupId>
33                 <artifactId>yangtools-artifacts</artifactId>
34                 <version>1.1.0-SNAPSHOT</version>
35                 <type>pom</type>
36                 <scope>import</scope>
37             </dependency>
38         </dependencies>
39     </dependencyManagement>
40
41     <dependencies>
42         <dependency>
43             <groupId>org.opendaylight.yangtools</groupId>
44             <artifactId>yang-model-api</artifactId>
45         </dependency>
46     </dependencies>
47
48     <!--
49       Maven Site Configuration
50
51       The following configuration is necessary for maven-site-plugin to
52       correctly identify the correct deployment path for OpenDaylight Maven
53       sites.
54     -->
55     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
56
57     <distributionManagement>
58         <site>
59             <id>opendaylight-site</id>
60             <url>${nexus.site.url}/${project.artifactId}/</url>
61         </site>
62     </distributionManagement>
63
64 </project>