Remove archetypes
[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>7.0.1</version>
8     <relativePath/>
9   </parent>
10   <groupId>org.opendaylight.controller</groupId>
11   <artifactId>releasepom</artifactId>
12   <version>0.12.0-SNAPSHOT</version>
13   <packaging>pom</packaging>
14   <name>controller</name>
15   <!-- Used by Sonar to set project name -->
16
17   <modules>
18     <module>artifacts</module>
19
20     <!-- md-sal -->
21     <module>opendaylight/md-sal</module>
22     <!-- config -->
23     <module>opendaylight/config</module>
24
25     <module>opendaylight/model</module>
26
27     <module>opendaylight/blueprint</module>
28
29     <!-- Parents -->
30     <module>benchmark</module>
31     <module>opendaylight/commons/jolokia</module>
32
33     <!-- Karaf Distribution -->
34     <module>karaf</module>
35     <module>features</module>
36
37     <!-- documentation -->
38     <module>docs</module>
39   </modules>
40
41   <properties>
42     <maven.deploy.skip>true</maven.deploy.skip>
43     <maven.install.skip>true</maven.install.skip>
44   </properties>
45
46   <profiles>
47     <profile>
48       <id>sonar-jacoco-aggregate</id>
49       <activation>
50         <property>
51           <name>odl.jacoco.aggregateFile</name>
52         </property>
53       </activation>
54       <build>
55         <plugins>
56           <plugin>
57             <groupId>org.jacoco</groupId>
58             <artifactId>jacoco-maven-plugin</artifactId>
59             <executions>
60               <execution>
61                 <id>merge</id>
62                 <goals>
63                     <goal>merge</goal>
64                 </goals>
65                 <phase>generate-resources</phase>
66                 <configuration>
67                   <destFile>${odl.jacoco.aggregateFile}</destFile>
68                   <fileSets>
69                     <fileSet>
70                       <directory>${project.basedir}</directory>
71                       <includes>
72                         <include>**/target/code-coverage/*.exec</include>
73                       </includes>
74                     </fileSet>
75                   </fileSets>
76                 </configuration>
77               </execution>
78             </executions>
79           </plugin>
80         </plugins>
81       </build>
82     </profile>
83   </profiles>
84
85   <scm>
86     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
87     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
88     <tag>HEAD</tag>
89     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
90   </scm>
91 </project>