Fix to Topology Adapter to properly handle links coming and going
[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   </dependencies>
34   <packaging>bundle</packaging>
35
36   <build>
37     <plugins>
38       <plugin>
39         <groupId>org.eclipse.xtend</groupId>
40         <artifactId>xtend-maven-plugin</artifactId>
41       </plugin>
42       <plugin>
43         <groupId>org.apache.felix</groupId>
44         <artifactId>maven-bundle-plugin</artifactId>
45         <configuration>
46           <instructions>
47             <Bundle-Name>${project.name}</Bundle-Name>
48             <Bundle-Activator>org.opendaylight.controller.sal.compatibility.ComponentActivator</Bundle-Activator>
49           </instructions>
50         </configuration>
51       </plugin>
52       <plugin>
53                <groupId>org.jacoco</groupId>
54                <artifactId>jacoco-maven-plugin</artifactId>
55                <configuration>
56                  <includes>org.opendaylight.controller.*</includes>
57                </configuration>
58                <executions>
59                  <execution>
60                    <id>pre-test</id>
61                    <goals>
62                      <goal>prepare-agent</goal>
63                    </goals>
64                  </execution>
65                  <execution>
66                    <id>post-test</id>
67                    <phase>test</phase>
68                    <goals>
69                      <goal>report</goal>
70                    </goals>
71                  </execution>
72                </executions>
73       </plugin>
74     </plugins>
75   </build>
76
77 </project>