Clean-up pom.xml layout
[controller.git] / opendaylight / md-sal / sal-dom-spi / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.mdsal</groupId>
6     <artifactId>binding-parent</artifactId>
7     <version>0.10.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <version>1.5.0-SNAPSHOT</version>
13   <artifactId>sal-core-spi</artifactId>
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>sal-core-api</artifactId>
32     </dependency>
33   </dependencies>
34
35   <profiles>
36     <!-- Turn off doclint on aggregated API javadoc build. -->
37     <profile>
38       <id>jdk8</id>
39       <activation>
40         <jdk>[1.8,)</jdk>
41       </activation>
42
43       <build>
44         <plugins>
45           <plugin>
46             <groupId>org.apache.maven.plugins</groupId>
47             <artifactId>maven-javadoc-plugin</artifactId>
48             <configuration>
49               <additionalparam>-Xdoclint:none</additionalparam>
50             </configuration>
51           </plugin>
52         </plugins>
53       </build>
54     </profile>
55   </profiles>
56   <scm>
57     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
58     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
59     <tag>HEAD</tag>
60     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
61   </scm>
62 </project>