Release mdsal
[mdsal.git] / dom / mdsal-dom-schema-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.mdsal</groupId>
14         <artifactId>dom-parent</artifactId>
15         <version>9.0.3</version>
16         <relativePath>../dom-parent</relativePath>
17     </parent>
18
19     <artifactId>mdsal-dom-schema-osgi</artifactId>
20     <packaging>bundle</packaging>
21
22     <dependencies>
23         <dependency>
24             <groupId>org.opendaylight.mdsal</groupId>
25             <artifactId>mdsal-dom-spi</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.mdsal</groupId>
29             <artifactId>mdsal-binding-runtime-spi</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.osgi</groupId>
33             <artifactId>org.osgi.annotation.versioning</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.osgi</groupId>
37             <artifactId>org.osgi.framework</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.osgi</groupId>
41             <artifactId>org.osgi.service.component</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.osgi</groupId>
45             <artifactId>org.osgi.service.component.annotations</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.osgi</groupId>
49             <artifactId>org.osgi.util.tracker</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.apache.karaf.features</groupId>
53             <artifactId>org.apache.karaf.features.core</artifactId>
54             <scope>provided</scope>
55             <!-- Needed to generate optional OSGi import -->
56             <optional>true</optional>
57         </dependency>
58
59         <dependency>
60             <groupId>org.opendaylight.yangtools</groupId>
61             <artifactId>mockito-configuration</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.yangtools</groupId>
65             <artifactId>yang-test-util</artifactId>
66         </dependency>
67     </dependencies>
68
69     <build>
70         <plugins>
71             <plugin>
72                 <groupId>org.apache.felix</groupId>
73                 <artifactId>maven-bundle-plugin</artifactId>
74                 <extensions>true</extensions>
75                 <configuration>
76                     <instructions>
77                         <Automatic-Module-Name>org.opendaylight.mdsal.dom.schema.osgi</Automatic-Module-Name>
78                         <!-- Karaf cannot handle Factory Component requirements, see https://issues.apache.org/jira/browse/KARAF-6625 -->
79                         <_dsannotations-options>norequirements</_dsannotations-options>
80                     </instructions>
81                 </configuration>
82             </plugin>
83         </plugins>
84     </build>
85
86     <scm>
87         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
88         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
89         <tag>HEAD</tag>
90         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
91     </scm>
92 </project>