Clean-up pom.xml layout
[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   <version>1.5.0-SNAPSHOT</version>
12   <artifactId>messagebus-spi</artifactId>
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 on aggregated API javadoc build. -->
49     <profile>
50       <id>jdk8</id>
51       <activation>
52         <jdk>[1.8,)</jdk>
53       </activation>
54
55       <build>
56         <plugins>
57           <plugin>
58             <groupId>org.apache.maven.plugins</groupId>
59             <artifactId>maven-javadoc-plugin</artifactId>
60             <configuration>
61               <additionalparam>-Xdoclint:none</additionalparam>
62             </configuration>
63           </plugin>
64         </plugins>
65       </build>
66     </profile>
67   </profiles>
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>