75d97715b75c05a8e8e32def8af022eb1992ef2e
[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.mdsal</groupId>
14         <artifactId>dom-parent</artifactId>
15         <version>4.0.17-SNAPSHOT</version>
16         <relativePath>../dom-parent</relativePath>
17     </parent>
18
19     <artifactId>mdsal-dom-schema-service-osgi</artifactId>
20     <packaging>bundle</packaging>
21
22     <dependencies>
23         <dependency>
24             <groupId>org.osgi</groupId>
25             <artifactId>org.osgi.core</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>com.google.guava</groupId>
29             <artifactId>guava</artifactId>
30         </dependency>
31
32         <dependency>
33             <groupId>org.opendaylight.mdsal</groupId>
34             <artifactId>mdsal-dom-api</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.mdsal</groupId>
38             <artifactId>mdsal-dom-broker</artifactId>
39         </dependency>
40
41         <dependency>
42             <groupId>org.opendaylight.yangtools</groupId>
43             <artifactId>util</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.yangtools</groupId>
47             <artifactId>yang-data-impl</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>yang-parser-impl</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.yangtools</groupId>
55             <artifactId>yang-test-util</artifactId>
56         </dependency>
57
58         <dependency>
59             <groupId>org.opendaylight.yangtools</groupId>
60             <artifactId>mockito-configuration</artifactId>
61         </dependency>
62     </dependencies>
63
64     <build>
65         <plugins>
66             <plugin>
67                 <groupId>org.apache.felix</groupId>
68                 <artifactId>maven-bundle-plugin</artifactId>
69                 <extensions>true</extensions>
70                 <configuration>
71                     <instructions>
72                         <Bundle-Name>osgiBundleScanningSchema</Bundle-Name>
73                         <Import-Package>
74                             *,
75                             org.opendaylight.mdsal.dom.api
76                         </Import-Package>
77                     </instructions>
78                 </configuration>
79             </plugin>
80             <plugin>
81                 <groupId>org.apache.maven.plugins</groupId>
82                 <artifactId>maven-checkstyle-plugin</artifactId>
83                 <configuration>
84                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
85                 </configuration>
86             </plugin>
87             <plugin>
88                 <groupId>com.github.spotbugs</groupId>
89                 <artifactId>spotbugs-maven-plugin</artifactId>
90                 <configuration>
91                     <failOnError>true</failOnError>
92                 </configuration>
93             </plugin>
94         </plugins>
95     </build>
96
97     <scm>
98         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
99         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
100         <tag>HEAD</tag>
101         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
102     </scm>
103 </project>