Release Carbon
[mdsal.git] / binding2 / mdsal-binding2-runtime / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2017 Pantheon Technologies s.r.o. 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     <parent>
14         <groupId>org.opendaylight.odlparent</groupId>
15         <artifactId>bundle-parent</artifactId>
16         <version>1.8.4-Carbon</version>
17         <relativePath/>
18     </parent>
19
20     <modelVersion>4.0.0</modelVersion>
21     <groupId>org.opendaylight.mdsal</groupId>
22     <artifactId>mdsal-binding2-runtime</artifactId>
23     <version>0.10.4-Carbon</version>
24     <packaging>bundle</packaging>
25
26     <dependencyManagement>
27         <dependencies>
28             <dependency>
29                 <groupId>org.opendaylight.mdsal</groupId>
30                 <artifactId>mdsal-artifacts</artifactId>
31                 <version>2.2.4-Carbon</version>
32                 <type>pom</type>
33                 <scope>import</scope>
34             </dependency>
35             <dependency>
36                 <groupId>org.opendaylight.yangtools</groupId>
37                 <artifactId>yangtools-artifacts</artifactId>
38                 <version>1.1.4-Carbon</version>
39                 <type>pom</type>
40                 <scope>import</scope>
41             </dependency>
42         </dependencies>
43     </dependencyManagement>
44
45     <dependencies>
46         <dependency>
47             <groupId>org.opendaylight.mdsal</groupId>
48             <artifactId>mdsal-binding2-generator-impl</artifactId>
49         </dependency>
50         <dependency><groupId>junit</groupId>
51             <artifactId>junit</artifactId>
52             <scope>test</scope>
53         </dependency>
54         <dependency>
55             <groupId>org.mockito</groupId>
56             <artifactId>mockito-core</artifactId>
57             <scope>test</scope>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.yangtools</groupId>
61             <artifactId>yang-test-util</artifactId>
62             <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.mdsal</groupId>
66             <artifactId>mdsal-binding2-test-model</artifactId>
67             <scope>test</scope>
68         </dependency>
69     </dependencies>
70
71     <!--
72         Maven Site Configuration
73
74         The following configuration is necessary for maven-site-plugin to
75         correctly identify the correct deployment path for OpenDaylight Maven
76         sites.
77     -->
78     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
79
80     <distributionManagement>
81         <site>
82             <id>opendaylight-site</id>
83             <url>${nexus.site.url}/${project.artifactId}/</url>
84         </site>
85     </distributionManagement>
86
87 </project>