add soanr code analasys TELSDN-549: #close
[lispflowmapping.git] / mappingservice / southbound / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5         <modelVersion>4.0.0</modelVersion>
6         <parent>
7                 <groupId>org.opendaylight.lispflowmapping</groupId>
8                 <artifactId>mappingservice-parent</artifactId>
9                 <version>0.1.0-SNAPSHOT</version>
10                 <relativePath>..</relativePath>
11         </parent>
12         <artifactId>mappingservice.southbound</artifactId>
13         <packaging>bundle</packaging>
14         <properties>
15                 <!-- Sonar properties using jacoco to retrieve integration test results -->
16                 <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
17                 <sonar.jacoco.Reportpath>target/jacoco.exec</sonar.jacoco.Reportpath>
18                 <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
19         </properties>
20         <build>
21         <pluginManagement>
22       <plugins>
23         <plugin>
24           <groupId>org.jacoco</groupId>
25           <artifactId>jacoco-maven-plugin</artifactId>
26           <version>${jacoco.version}</version>
27         </plugin>
28       </plugins>
29     </pluginManagement>
30                 <plugins>
31                         <plugin>
32                                 <groupId>org.apache.felix</groupId>
33                                 <artifactId>maven-bundle-plugin</artifactId>
34                                 <extensions>true</extensions>
35                                 <configuration>
36                                         <instructions>
37                                                 <Export-Package>
38                                                 </Export-Package>
39                                                 <Import-Package>
40                                                         org.opendaylight.controller.sal.core,
41                                                         org.apache.felix.dm,
42                                                         org.apache.commons.lang3.builder,
43                                                         org.osgi.service.component,
44                                                         org.slf4j,
45                                                         org.eclipse.osgi.framework.console,
46                                                         org.osgi.framework,
47                                                         org.opendaylight.lispflowmapping.interfaces.lisp,
48                                                         org.opendaylight.lispflowmapping.type,
49                                                         org.opendaylight.lispflowmapping.type.lisp,
50                                                         org.opendaylight.lispflowmapping.type.lisp.address,
51                                                         org.opendaylight.lispflowmapping.type.sbplugin,
52                                                         org.opendaylight.controller.clustering.services,
53                                                         org.opendaylight.lispflowmapping.implementation.serializer,
54                                                         org.opendaylight.lispflowmapping.implementation.util,
55                                                         org.opendaylight.controller.sal.binding.api,
56                                                         org.opendaylight.yangtools.yang.binding,
57                                                         org.opendaylight.yangtools.yang.common
58                                                 </Import-Package>
59                                                 <Bundle-Activator>
60                                                         org.opendaylight.lispflowmapping.southbound.LispSouthboundPlugin
61                                                 </Bundle-Activator>
62                                                 <Service-Component>
63                                                 </Service-Component>
64                                         </instructions>
65                                 </configuration>
66                         </plugin>
67                         <plugin>
68         <groupId>org.jacoco</groupId>
69         <artifactId>jacoco-maven-plugin</artifactId>
70         <configuration>
71           <includes>org.opendaylight.controller.*</includes>
72         </configuration>
73         <executions>
74           <execution>
75             <id>pre-test</id>
76             <goals>
77               <goal>prepare-agent</goal>
78             </goals>
79           </execution>
80           <execution>
81             <id>post-test</id>
82             <phase>test</phase>
83             <goals>
84               <goal>report</goal>
85             </goals>
86           </execution>
87         </executions>
88       </plugin>
89                 </plugins>
90         </build>
91         <dependencies>
92                 <dependency>
93                         <groupId>org.opendaylight.controller</groupId>
94                         <artifactId>sal-binding-api</artifactId>
95                 </dependency>
96                 <dependency>
97                         <groupId>org.opendaylight.controller</groupId>
98                         <artifactId>sal-common-util</artifactId>
99                 </dependency>
100                 <dependency>
101                         <groupId>org.opendaylight.lispflowmapping</groupId>
102                         <artifactId>mappingservice.api</artifactId>
103                         <version>0.1.0-SNAPSHOT</version>
104                 </dependency>
105                 <dependency>
106                         <groupId>org.opendaylight.lispflowmapping</groupId>
107                         <artifactId>mappingservice.implementation</artifactId>
108                         <version>0.1.0-SNAPSHOT</version>
109                 </dependency>
110         </dependencies>
111 </project>