Revert "Clean-up pom.xml layout"
[controller.git] / opendaylight / md-sal / sal-binding-api / 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.controller</groupId>
6     <artifactId>sal-parent</artifactId>
7     <version>1.5.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-binding-api</artifactId>
10   <packaging>bundle</packaging>
11
12   <dependencies>
13     <dependency>
14       <groupId>com.google.guava</groupId>
15       <artifactId>guava</artifactId>
16     </dependency>
17     <dependency>
18       <groupId>org.opendaylight.controller</groupId>
19       <artifactId>sal-common-api</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.yangtools</groupId>
23       <artifactId>concepts</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.mdsal</groupId>
27       <artifactId>yang-binding</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.yangtools</groupId>
31       <artifactId>yang-common</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.osgi</groupId>
35       <artifactId>org.osgi.core</artifactId>
36       <scope>provided</scope>
37     </dependency>
38   </dependencies>
39   <scm>
40     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
41     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
42     <tag>HEAD</tag>
43     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
44   </scm>
45
46   <profiles>
47     <!-- Turn off doclint on aggregated API javadoc build. -->
48     <profile>
49       <id>jdk8</id>
50       <activation>
51         <jdk>[1.8,)</jdk>
52       </activation>
53
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 </project>