Clean-up pom.xml layout
[controller.git] / opendaylight / config / config-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <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">
4   <modelVersion>4.0.0</modelVersion>
5
6   <parent>
7     <groupId>org.opendaylight.mdsal</groupId>
8     <artifactId>binding-parent</artifactId>
9     <version>0.10.0-SNAPSHOT</version>
10     <relativePath/>
11   </parent>
12
13   <groupId>org.opendaylight.controller</groupId>
14   <version>0.6.0-SNAPSHOT</version>
15   <artifactId>config-api</artifactId>
16   <packaging>bundle</packaging>
17   <name>${project.artifactId}</name>
18
19   <dependencies>
20     <dependency>
21       <groupId>org.osgi</groupId>
22       <artifactId>org.osgi.core</artifactId>
23
24       <!-- We are adding generated code which is bound to OSGi, so we need
25            to make sure anyone dependending on this artifact inherits it -->
26       <scope>compile</scope>
27     </dependency>
28       <dependency>
29           <groupId>org.opendaylight.yangtools</groupId>
30           <artifactId>mockito-configuration</artifactId>
31       </dependency>
32   </dependencies>
33
34   <profiles>
35     <!-- Turn off doclint on aggregated API javadoc build. -->
36     <profile>
37       <id>jdk8</id>
38       <activation>
39         <jdk>[1.8,)</jdk>
40       </activation>
41
42       <build>
43         <plugins>
44           <plugin>
45             <groupId>org.apache.maven.plugins</groupId>
46             <artifactId>maven-javadoc-plugin</artifactId>
47             <configuration>
48               <additionalparam>-Xdoclint:none</additionalparam>
49             </configuration>
50           </plugin>
51         </plugins>
52       </build>
53     </profile>
54   </profiles>
55 </project>