Bug 8326 - Split out OsgiBundleScanningSchemaService
[mdsal.git] / dom / mdsal-dom-broker / 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     <modelVersion>4.0.0</modelVersion>
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>bundle-parent</artifactId>
15         <version>2.0.5</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.mdsal</groupId>
20     <artifactId>mdsal-dom-broker</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>1.2.0</version>
37                 <type>pom</type>
38                 <scope>import</scope>
39             </dependency>
40         </dependencies>
41     </dependencyManagement>
42
43   <dependencies>
44     <dependency>
45       <groupId>com.google.guava</groupId>
46       <artifactId>guava</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>com.lmax</groupId>
50       <artifactId>disruptor</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-spi</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.mdsal</groupId>
63       <artifactId>mdsal-dom-inmemory-datastore</artifactId>
64     </dependency>
65
66     <dependency>
67       <groupId>org.opendaylight.yangtools</groupId>
68       <artifactId>util</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.yangtools</groupId>
72       <artifactId>yang-data-impl</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.yangtools</groupId>
76       <artifactId>yang-parser-impl</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.yangtools</groupId>
80       <artifactId>yang-model-api</artifactId>
81     </dependency>
82
83     <dependency>
84       <groupId>junit</groupId>
85       <artifactId>junit</artifactId>
86     </dependency>
87
88     <dependency>
89       <groupId>org.opendaylight.yangtools</groupId>
90       <artifactId>mockito-configuration</artifactId>
91       <scope>test</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.yangtools</groupId>
95       <artifactId>yang-test-util</artifactId>
96     </dependency>
97   </dependencies>
98
99   <build>
100     <plugins>
101       <plugin>
102           <groupId>org.apache.maven.plugins</groupId>
103           <artifactId>maven-checkstyle-plugin</artifactId>
104           <configuration>
105               <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
106           </configuration>
107       </plugin>
108     </plugins>
109   </build>
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</url>
115   </scm>
116
117   <!--
118       Maven Site Configuration
119
120       The following configuration is necessary for maven-site-plugin to
121       correctly identify the correct deployment path for OpenDaylight Maven
122       sites.
123   -->
124   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
125
126   <distributionManagement>
127     <site>
128       <id>opendaylight-site</id>
129       <url>${nexus.site.url}/${project.artifactId}/</url>
130     </site>
131   </distributionManagement>
132
133 </project>