Bug 6348 : car:stop-stress-test RPC to return success & failure counters
[controller.git] / 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.odlparent</groupId>
6     <artifactId>odlparent-lite</artifactId>
7     <version>1.8.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10   <groupId>org.opendaylight.controller</groupId>
11   <artifactId>releasepom</artifactId>
12   <version>0.5.0-SNAPSHOT</version>
13   <packaging>pom</packaging>
14   <name>controller</name>
15   <!-- Used by Sonar to set project name -->
16
17   <modules>
18
19     <!-- md-sal -->
20     <module>opendaylight/md-sal</module>
21     <!-- config -->
22     <module>opendaylight/config</module>
23
24     <module>opendaylight/model</module>
25
26     <module>opendaylight/blueprint</module>
27
28     <!-- Parents -->
29     <module>opendaylight/commons/protocol-framework</module>
30     <module>opendaylight/commons/checkstyle</module>
31     <module>opendaylight/commons/opendaylight</module>
32     <module>opendaylight/commons/logback_settings</module>
33     <module>opendaylight/commons/filter-valve</module>
34     <module>opendaylight/commons/liblldp</module>
35     <module>opendaylight/commons/enunciate-parent</module>
36     <module>benchmark</module>
37     <module>opendaylight/commons/jolokia</module>
38
39     <!-- Karaf Distribution -->
40     <module>karaf</module>
41     <module>features</module>
42
43     <!-- archetypes -->
44     <module>opendaylight/archetypes</module>
45   </modules>
46   <scm>
47     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
48     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
49     <tag>HEAD</tag>
50     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
51   </scm>
52
53   <profiles>
54     <!-- Turn off doclint on aggregated API javadoc build. -->
55     <profile>
56       <id>jdk8</id>
57       <activation>
58         <jdk>[1.8,)</jdk>
59       </activation>
60
61       <build>
62         <plugins>
63           <plugin>
64             <groupId>org.apache.maven.plugins</groupId>
65             <artifactId>maven-javadoc-plugin</artifactId>
66             <configuration>
67               <additionalparam>-Xdoclint:none</additionalparam>
68             </configuration>
69           </plugin>
70         </plugins>
71       </build>
72     </profile>
73   </profiles>
74 </project>