07460138ba97197cf1d6446ed3fed01716c50e32
[controller.git] / opendaylight / md-sal / messagebus-spi / pom.xml
1 <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">
2   <modelVersion>4.0.0</modelVersion>
3   <parent>
4     <groupId>org.opendaylight.controller</groupId>
5     <artifactId>config-parent</artifactId>
6     <version>0.6.0-SNAPSHOT</version>
7     <relativePath>../../config/config-parent</relativePath>
8   </parent>
9
10   <groupId>org.opendaylight.controller</groupId>
11   <artifactId>messagebus-spi</artifactId>
12   <version>1.5.0-SNAPSHOT</version>
13   <name>${project.artifactId}</name>
14   <packaging>bundle</packaging>
15
16     <dependencyManagement>
17         <dependencies>
18             <dependency>
19                 <groupId>org.opendaylight.controller</groupId>
20                 <artifactId>mdsal-artifacts</artifactId>
21                 <version>1.5.0-SNAPSHOT</version>
22                 <type>pom</type>
23                 <scope>import</scope>
24             </dependency>
25         </dependencies>
26     </dependencyManagement>
27
28   <dependencies>
29     <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>messagebus-api</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>config-api</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.yangtools</groupId>
39       <artifactId>yang-data-api</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.yangtools</groupId>
43       <artifactId>yang-model-api</artifactId>
44     </dependency>
45   </dependencies>
46
47   <profiles>
48     <!-- Turn off doclint. -->
49     <profile>
50       <id>jdk8</id>
51       <activation>
52         <jdk>[1.8,)</jdk>
53       </activation>
54       <build>
55         <plugins>
56           <plugin>
57             <groupId>org.apache.maven.plugins</groupId>
58             <artifactId>maven-javadoc-plugin</artifactId>
59             <configuration>
60               <additionalparam>-Xdoclint:none</additionalparam>
61             </configuration>
62           </plugin>
63         </plugins>
64       </build>
65     </profile>
66   </profiles>
67
68   <scm>
69     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
70     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
71     <tag>HEAD</tag>
72     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
73   </scm>
74 </project>