BUG 2661 - sonar issues in learning-switch
[openflowplugin.git] / legacy / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.openflowplugin</groupId>
6     <artifactId>openflowplugin-parent</artifactId>
7     <version>0.1.0-SNAPSHOT</version>
8     <relativePath>../</relativePath>
9   </parent>
10   <groupId>org.opendaylight.openflowplugin.legacy</groupId>
11   <artifactId>legacy-parent</artifactId>
12   <packaging>pom</packaging>
13   <name>MD-SAL to AD-SAL Adaptation Parent</name>
14
15   <modules>
16     <module>sal-compatibility</module>
17   </modules>
18
19   <dependencies>
20     <dependency>
21       <groupId>com.google.guava</groupId>
22       <artifactId>guava</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.controller</groupId>
26       <artifactId>sal</artifactId>
27       <version>0.9.0-SNAPSHOT</version>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>sal-binding-api</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>sal-common-util</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>junit</groupId>
39       <artifactId>junit</artifactId>
40       <scope>test</scope>
41     </dependency>
42   </dependencies>
43
44   <build>
45     <plugins>
46       <plugin>
47         <groupId>org.apache.felix</groupId>
48         <artifactId>maven-bundle-plugin</artifactId>
49         <configuration>
50           <instructions>
51             <Bundle-Name>${project.name}</Bundle-Name>
52             <Bundle-Activator>org.opendaylight.controller.sal.compability.ComponentActivator</Bundle-Activator>
53           </instructions>
54         </configuration>
55       </plugin>
56       <plugin>
57         <groupId>org.jacoco</groupId>
58         <artifactId>jacoco-maven-plugin</artifactId>
59         <configuration>
60           <includes>
61             <include>org.opendaylight.controller.*</include>
62           </includes>
63         </configuration>
64         <executions>
65           <execution>
66             <id>pre-test</id>
67             <goals>
68               <goal>prepare-agent</goal>
69             </goals>
70           </execution>
71           <execution>
72             <id>post-test</id>
73             <goals>
74               <goal>report</goal>
75             </goals>
76             <phase>test</phase>
77           </execution>
78         </executions>
79       </plugin>
80     </plugins>
81   </build>
82
83   <scm>
84     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
85     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
86     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
87     <tag>HEAD</tag>
88   </scm>
89
90 </project>