Clean-up pom.xml layout
[controller.git] / opendaylight / md-sal / sal-common-util / 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-common-util</artifactId>
14   <packaging>bundle</packaging>
15
16   <dependencies>
17     <dependency>
18       <groupId>com.google.guava</groupId>
19       <artifactId>guava</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>junit</groupId>
23       <artifactId>junit</artifactId>
24       <scope>test</scope>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>sal-common-api</artifactId>
29       <version>${project.version}</version>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.yangtools</groupId>
33       <artifactId>concepts</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.yangtools</groupId>
37       <artifactId>yang-common</artifactId>
38     </dependency>
39   </dependencies>
40
41   <scm>
42     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
43     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
44     <tag>HEAD</tag>
45     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
46   </scm>
47
48
49   <profiles>
50     <!-- Turn off doclint on aggregated API javadoc build. -->
51     <profile>
52       <id>jdk8</id>
53       <activation>
54         <jdk>[1.8,)</jdk>
55       </activation>
56
57       <build>
58         <plugins>
59           <plugin>
60             <groupId>org.apache.maven.plugins</groupId>
61             <artifactId>maven-javadoc-plugin</artifactId>
62             <configuration>
63               <additionalparam>-Xdoclint:none</additionalparam>
64             </configuration>
65           </plugin>
66         </plugins>
67       </build>
68     </profile>
69   </profiles>
70 </project>