Bump yangtools dependency to 2.0.0
[mdsal.git] / dom / mdsal-dom-schema-service-osgi / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2017 Pantheon Technologies s.r.o. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11    <modelVersion>4.0.0</modelVersion>
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>bundle-parent</artifactId>
15         <version>3.0.2</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.mdsal</groupId>
20     <artifactId>mdsal-dom-schema-service-osgi</artifactId>
21     <version>2.4.0-SNAPSHOT</version>
22     <packaging>bundle</packaging>
23
24     <dependencyManagement>
25         <dependencies>
26             <dependency>
27                 <groupId>org.opendaylight.mdsal</groupId>
28                 <artifactId>mdsal-artifacts</artifactId>
29                 <version>2.4.0-SNAPSHOT</version>
30                 <type>pom</type>
31                 <scope>import</scope>
32             </dependency>
33             <dependency>
34                 <groupId>org.opendaylight.yangtools</groupId>
35                 <artifactId>yangtools-artifacts</artifactId>
36                 <version>2.0.0</version>
37                 <type>pom</type>
38                 <scope>import</scope>
39             </dependency>
40         </dependencies>
41     </dependencyManagement>
42
43   <dependencies>
44     <dependency>
45       <groupId>org.osgi</groupId>
46       <artifactId>org.osgi.core</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>com.google.guava</groupId>
50       <artifactId>guava</artifactId>
51     </dependency>
52
53     <dependency>
54       <groupId>org.opendaylight.mdsal</groupId>
55       <artifactId>mdsal-dom-api</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.mdsal</groupId>
59       <artifactId>mdsal-dom-broker</artifactId>
60     </dependency>
61
62     <dependency>
63       <groupId>org.opendaylight.yangtools</groupId>
64       <artifactId>util</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.yangtools</groupId>
68       <artifactId>yang-data-impl</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.yangtools</groupId>
72       <artifactId>yang-parser-impl</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.yangtools</groupId>
76       <artifactId>yang-test-util</artifactId>
77     </dependency>
78
79     <dependency>
80       <groupId>junit</groupId>
81       <artifactId>junit</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.yangtools</groupId>
85       <artifactId>mockito-configuration</artifactId>
86       <scope>test</scope>
87     </dependency>
88   </dependencies>
89
90
91   <build>
92     <plugins>
93       <plugin>
94         <groupId>org.apache.felix</groupId>
95         <artifactId>maven-bundle-plugin</artifactId>
96         <extensions>true</extensions>
97         <configuration>
98           <instructions>
99             <Bundle-Name>osgiBundleScanningSchema</Bundle-Name>
100             <Import-Package>
101               *,
102               org.opendaylight.mdsal.dom.api
103             </Import-Package>
104           </instructions>
105         </configuration>
106       </plugin>
107     </plugins>
108   </build>
109
110     <scm>
111         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
112         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
113         <tag>HEAD</tag>
114         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
115     </scm>
116
117
118   <!--
119       Maven Site Configuration
120
121       The following configuration is necessary for maven-site-plugin to
122       correctly identify the correct deployment path for OpenDaylight Maven
123       sites.
124   -->
125   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
126
127   <distributionManagement>
128     <site>
129       <id>opendaylight-site</id>
130       <url>${nexus.site.url}/${project.artifactId}/</url>
131     </site>
132   </distributionManagement>
133
134 </project>