Bump versions to 5.0.7-SNAPSHOT
[mdsal.git] / dom / mdsal-dom-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2016 Cisco Systems, Inc. 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
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.mdsal</groupId>
15         <artifactId>dom-parent</artifactId>
16         <version>5.0.7-SNAPSHOT</version>
17         <relativePath>../dom-parent</relativePath>
18     </parent>
19
20     <artifactId>mdsal-dom-api</artifactId>
21     <packaging>bundle</packaging>
22
23     <properties>
24         <!-- FIXME: Workaround for https://issues.apache.org/jira/browse/ARIES-1923 -->
25         <maven.compiler.release>10</maven.compiler.release>
26     </properties>
27
28     <dependencies>
29         <dependency>
30             <groupId>org.opendaylight.mdsal</groupId>
31             <artifactId>mdsal-common-api</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.yangtools</groupId>
35             <artifactId>yang-data-api</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.yangtools</groupId>
39             <artifactId>yang-model-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.osgi</groupId>
43             <artifactId>org.osgi.core</artifactId>
44         </dependency>
45
46         <dependency>
47             <groupId>org.opendaylight.yangtools</groupId>
48             <artifactId>yang-data-impl</artifactId>
49             <scope>test</scope>
50         </dependency>
51     </dependencies>
52
53     <build>
54         <plugins>
55             <plugin>
56                 <groupId>org.apache.felix</groupId>
57                 <artifactId>maven-bundle-plugin</artifactId>
58                 <configuration>
59                     <instructions>
60                         <Automatic-Module-Name>org.opendaylight.mdsal.dom.api</Automatic-Module-Name>
61                     </instructions>
62                 </configuration>
63             </plugin>
64         </plugins>
65     </build>
66     <scm>
67         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
68         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
69         <tag>HEAD</tag>
70         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
71     </scm>
72 </project>