79958e09de1bf5dca1316bab61eb873c10374b40
[controller.git] / opendaylight / md-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>sal-parent</artifactId>
6         <version>1.0</version>
7     </parent>
8     <artifactId>compatibility-parent</artifactId>
9     <packaging>pom</packaging>
10     <name>MD-SAL to AD-SAL Adaptation Parent</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       <tag>master-tagforprepareonly-controller-bulk-release-2-1</tag>
16   </scm>
17
18     <modules>
19         <module>sal-compatibility</module>
20         <module>inventory-topology-compatibility</module>
21         <module>flow-management-compatibility</module>
22     </modules>
23
24     <dependencies>
25         <dependency>
26             <groupId>org.opendaylight.controller</groupId>
27             <artifactId>sal</artifactId>
28             <version>0.7.0</version>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.controller.model</groupId>
32             <artifactId>model-flow-service</artifactId>
33             <version>1.0</version>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.controller</groupId>
37             <artifactId>sal-common-util</artifactId>
38             <version>1.0</version>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.controller</groupId>
42             <artifactId>sal-binding-api</artifactId>
43             <version>1.0</version>
44         </dependency>
45         <dependency>
46             <groupId>com.google.guava</groupId>
47             <artifactId>guava</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.eclipse.xtend</groupId>
51             <artifactId>org.eclipse.xtend.lib</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>junit</groupId>
55             <artifactId>junit</artifactId>
56             <scope>test</scope>
57         </dependency>
58     </dependencies>
59
60     <build>
61         <plugins>
62             <plugin>
63                 <groupId>org.eclipse.xtend</groupId>
64                 <artifactId>xtend-maven-plugin</artifactId>
65             </plugin>
66             <plugin>
67                 <groupId>org.apache.felix</groupId>
68                 <artifactId>maven-bundle-plugin</artifactId>
69                 <configuration>
70                     <instructions>
71                         <Bundle-Name>${project.name}</Bundle-Name>
72                         <Bundle-Activator>org.opendaylight.controller.sal.compability.ComponentActivator</Bundle-Activator>
73                     </instructions>
74                 </configuration>
75             </plugin>
76             <plugin>
77                 <groupId>org.jacoco</groupId>
78                 <artifactId>jacoco-maven-plugin</artifactId>
79                 <configuration>
80                     <includes>org.opendaylight.controller.*</includes>
81                 </configuration>
82                 <executions>
83                     <execution>
84                         <id>pre-test</id>
85                         <goals>
86                             <goal>prepare-agent</goal>
87                         </goals>
88                     </execution>
89                     <execution>
90                         <id>post-test</id>
91                         <phase>test</phase>
92                         <goals>
93                             <goal>report</goal>
94                         </goals>
95                     </execution>
96                 </executions>
97             </plugin>
98         </plugins>
99     </build>
100
101 </project>