Merge "Config save support for networkconfiguration.neutron"
[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     <dependency>
24       <groupId>org.opendaylight.controller.model</groupId>
25       <artifactId>model-topology</artifactId>
26       <version>1.0-SNAPSHOT</version>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller</groupId>
30       <artifactId>sal-binding-util</artifactId>
31       <version>1.0-SNAPSHOT</version>
32     </dependency>
33     <dependency>
34         <groupId>org.opendaylight.controller</groupId>
35         <artifactId>clustering.services</artifactId>
36         <version>0.5.0-SNAPSHOT</version>
37     </dependency>
38   </dependencies>
39   <packaging>bundle</packaging>
40
41   <build>
42     <plugins>
43       <plugin>
44         <groupId>org.eclipse.xtend</groupId>
45         <artifactId>xtend-maven-plugin</artifactId>
46       </plugin>
47       <plugin>
48         <groupId>org.apache.felix</groupId>
49         <artifactId>maven-bundle-plugin</artifactId>
50         <configuration>
51           <instructions>
52             <Bundle-Name>${project.name}</Bundle-Name>
53             <Bundle-Activator>org.opendaylight.controller.sal.compatibility.ComponentActivator</Bundle-Activator>
54           </instructions>
55         </configuration>
56       </plugin>
57       <plugin>
58                <groupId>org.jacoco</groupId>
59                <artifactId>jacoco-maven-plugin</artifactId>
60                <configuration>
61                  <includes>org.opendaylight.controller.*</includes>
62                </configuration>
63                <executions>
64                  <execution>
65                    <id>pre-test</id>
66                    <goals>
67                      <goal>prepare-agent</goal>
68                    </goals>
69                  </execution>
70                  <execution>
71                    <id>post-test</id>
72                    <phase>test</phase>
73                    <goals>
74                      <goal>report</goal>
75                    </goals>
76                  </execution>
77                </executions>
78       </plugin>
79     </plugins>
80   </build>
81
82 </project>