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