038b538a7992207065db48a1c4167cd861f27042
[neutron.git] / parent / 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   <prerequisites>
5     <maven>3.0</maven>
6   </prerequisites>
7
8   <parent>
9     <groupId>org.opendaylight.odlparent</groupId>
10     <artifactId>odlparent</artifactId>
11     <version>1.5.0-SNAPSHOT</version>
12     <relativePath/>
13   </parent>
14
15   <groupId>org.opendaylight.neutron</groupId>
16   <artifactId>project-neutron-parent</artifactId>
17   <version>0.5.0-SNAPSHOT</version>
18   <packaging>pom</packaging>
19   <properties>
20     <aaa.version>0.1.3-SNAPSHOT</aaa.version>
21     <jacoco.version>0.6.2.201302030002</jacoco.version>
22   </properties>
23   <scm>
24     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
25     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
26     <tag>HEAD</tag>
27   </scm>
28   <build>
29     <pluginManagement>
30       <plugins>
31         <plugin>
32           <groupId>org.jacoco</groupId>
33           <artifactId>jacoco-maven-plugin</artifactId>
34           <version>${jacoco.version}</version>
35         </plugin>
36       </plugins>
37     </pluginManagement>
38     <plugins>
39       <plugin>
40         <groupId>org.jacoco</groupId>
41         <artifactId>jacoco-maven-plugin</artifactId>
42         <configuration>
43           <includes>
44             <include>org.opendaylight.neutron.*</include>
45           </includes>
46         </configuration>
47         <executions>
48           <execution>
49             <id>pre-test</id>
50             <goals>
51               <goal>prepare-agent</goal>
52             </goals>
53           </execution>
54           <execution>
55             <id>post-test</id>
56             <goals>
57               <goal>report</goal>
58             </goals>
59             <phase>test</phase>
60           </execution>
61         </executions>
62       </plugin>
63     </plugins>
64   </build> 
65 </project>