Merge "Added DELETE support for Bridge and Port resources"
[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"
2   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.controller</groupId>
6     <artifactId>compatibility-parent</artifactId>
7     <version>1.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-compatibility</artifactId>
10   <name>MD-SAL to AD-SAL Adaptation</name>
11   <scm>
12     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
15   </scm>
16
17   <dependencies>
18     <dependency>
19       <groupId>org.opendaylight.controller.model</groupId>
20       <artifactId>model-flow-statistics</artifactId>
21       <version>1.0-SNAPSHOT</version>
22     </dependency>
23   </dependencies>
24   <packaging>bundle</packaging>
25
26   <build>
27     <plugins>
28       <plugin>
29         <groupId>org.eclipse.xtend</groupId>
30         <artifactId>xtend-maven-plugin</artifactId>
31       </plugin>
32       <plugin>
33         <groupId>org.apache.felix</groupId>
34         <artifactId>maven-bundle-plugin</artifactId>
35         <configuration>
36           <instructions>
37             <Bundle-Name>${project.name}</Bundle-Name>
38             <Bundle-Activator>org.opendaylight.controller.sal.compatibility.ComponentActivator</Bundle-Activator>
39           </instructions>
40         </configuration>
41       </plugin>
42       <plugin>
43                <groupId>org.jacoco</groupId>
44                <artifactId>jacoco-maven-plugin</artifactId>
45                <configuration>
46                  <includes>org.opendaylight.controller.*</includes>
47                </configuration>
48                <executions>
49                  <execution>
50                    <id>pre-test</id>
51                    <goals>
52                      <goal>prepare-agent</goal>
53                    </goals>
54                  </execution>
55                  <execution>
56                    <id>post-test</id>
57                    <phase>test</phase>
58                    <goals>
59                      <goal>report</goal>
60                    </goals>
61                  </execution>
62                </executions>
63       </plugin>
64     </plugins>
65   </build>
66
67 </project>