7fded281d23c6f537932e5d25587efc02bda490a
[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.1-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.1-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.1-SNAPSHOT</version>
35                 <type>pom</type>
36                 <scope>import</scope>
37             </dependency>
38             <dependency>
39                 <groupId>org.opendaylight.mdsal</groupId>
40                 <artifactId>mdsal-artifacts</artifactId>
41                 <version>2.2.1-SNAPSHOT</version>
42                 <type>pom</type>
43                 <scope>import</scope>
44             </dependency>
45         </dependencies>
46     </dependencyManagement>
47
48     <dependencies>
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>yang-model-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.mdsal</groupId>
55             <artifactId>mdsal-binding2-spec</artifactId>
56         </dependency>
57     </dependencies>
58
59     <!--
60       Maven Site Configuration
61
62       The following configuration is necessary for maven-site-plugin to
63       correctly identify the correct deployment path for OpenDaylight Maven
64       sites.
65     -->
66     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
67
68     <distributionManagement>
69         <site>
70             <id>opendaylight-site</id>
71             <url>${nexus.site.url}/${project.artifactId}/</url>
72         </site>
73     </distributionManagement>
74
75 </project>