Unify jacoco versions to 0.6.2.201302030002
[controller.git] / opendaylight / md-sal / compatibility / sal-compatibility / pom.xml
1 <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">
2   <modelVersion>4.0.0</modelVersion>
3   <parent>
4     <groupId>org.opendaylight.controller</groupId>
5     <artifactId>compatibility-parent</artifactId>
6     <version>1.1-SNAPSHOT</version>
7   </parent>
8   <artifactId>sal-compatibility</artifactId>
9   <name>MD-SAL to AD-SAL Adaptation</name>
10   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
14     <tag>HEAD</tag>
15   </scm>
16
17   <dependencies>
18     <dependency>
19       <groupId>org.opendaylight.controller.model</groupId>
20       <artifactId>model-flow-statistics</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.opendaylight.controller.model</groupId>
24       <artifactId>model-topology</artifactId>
25       <version>1.1-SNAPSHOT</version>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>sal-binding-util</artifactId>
30     </dependency>
31     <dependency>
32         <groupId>org.opendaylight.controller</groupId>
33         <artifactId>clustering.services</artifactId>
34     </dependency>
35   </dependencies>
36   <packaging>bundle</packaging>
37
38   <build>
39     <plugins>
40       <plugin>
41         <groupId>org.eclipse.xtend</groupId>
42         <artifactId>xtend-maven-plugin</artifactId>
43       </plugin>
44       <plugin>
45         <groupId>org.apache.felix</groupId>
46         <artifactId>maven-bundle-plugin</artifactId>
47         <configuration>
48           <instructions>
49             <Bundle-Name>${project.name}</Bundle-Name>
50             <Bundle-Activator>org.opendaylight.controller.sal.compatibility.ComponentActivator</Bundle-Activator>
51           </instructions>
52         </configuration>
53       </plugin>
54       <plugin>
55                <groupId>org.jacoco</groupId>
56                <artifactId>jacoco-maven-plugin</artifactId>
57                <configuration>
58                  <includes><include>org.opendaylight.controller.*</include></includes>
59                </configuration>
60                <executions>
61                  <execution>
62                    <id>pre-test</id>
63                    <goals>
64                      <goal>prepare-agent</goal>
65                    </goals>
66                  </execution>
67                  <execution>
68                    <id>post-test</id>
69                    <phase>test</phase>
70                    <goals>
71                      <goal>report</goal>
72                    </goals>
73                  </execution>
74                </executions>
75       </plugin>
76     </plugins>
77   </build>
78
79 </project>