Use YANG java files instead of the old model TELSDN-474 #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.yang.gen.v1.lispflowmapping.rev131031,
41                                                         org.opendaylight.yang.gen.v1.lispflowmapping.rev131031.maprequest,
42                                                         org.opendaylight.yang.gen.v1.lispflowmapping.rev131031.lispaddress,
43                                                         org.opendaylight.yang.gen.v1.lispflowmapping.rev131031.lispaddress.lispaddresscontainer,
44                                                         org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924,
45                                                         org.opendaylight.controller.sal.core,
46                                                         org.apache.felix.dm,
47                                                         org.apache.commons.lang3.builder,
48                                                         org.osgi.service.component,
49                                                         org.slf4j,
50                                                         org.eclipse.osgi.framework.console,
51                                                         org.osgi.framework,
52                                                         org.opendaylight.lispflowmapping.interfaces.lisp,
53                                                         org.opendaylight.lispflowmapping.type,
54                                                         org.opendaylight.lispflowmapping.type.lisp,
55                                                         org.opendaylight.lispflowmapping.type.sbplugin,
56                                                         org.opendaylight.controller.clustering.services,
57                                                         org.opendaylight.lispflowmapping.implementation.serializer,
58                                                         org.opendaylight.lispflowmapping.implementation.util,
59                                                         org.opendaylight.controller.sal.binding.api,
60                                                         org.opendaylight.yangtools.yang.binding,
61                                                         org.opendaylight.yangtools.yang.common
62                                                 </Import-Package>
63                                                 <Bundle-Activator>
64                                                         org.opendaylight.lispflowmapping.southbound.LispSouthboundPlugin
65                                                 </Bundle-Activator>
66                                                 <Service-Component>
67                                                 </Service-Component>
68                                         </instructions>
69                                 </configuration>
70                         </plugin>
71                         <plugin>
72         <groupId>org.jacoco</groupId>
73         <artifactId>jacoco-maven-plugin</artifactId>
74         <configuration>
75           <includes>org.opendaylight.controller.*</includes>
76         </configuration>
77         <executions>
78           <execution>
79             <id>pre-test</id>
80             <goals>
81               <goal>prepare-agent</goal>
82             </goals>
83           </execution>
84           <execution>
85             <id>post-test</id>
86             <phase>test</phase>
87             <goals>
88               <goal>report</goal>
89             </goals>
90           </execution>
91         </executions>
92       </plugin>
93                 </plugins>
94         </build>
95         <dependencies>
96                 <dependency>
97                         <groupId>org.opendaylight.controller</groupId>
98                         <artifactId>sal-binding-api</artifactId>
99                 </dependency>
100                 <dependency>
101                         <groupId>org.opendaylight.controller</groupId>
102                         <artifactId>sal-common-util</artifactId>
103                 </dependency>
104                 <dependency>
105                         <groupId>org.opendaylight.lispflowmapping</groupId>
106                         <artifactId>mappingservice.api</artifactId>
107                         <version>0.1.0-SNAPSHOT</version>
108                 </dependency>
109                 <dependency>
110                         <groupId>org.opendaylight.lispflowmapping</groupId>
111                         <artifactId>mappingservice.implementation</artifactId>
112                         <version>0.1.0-SNAPSHOT</version>
113                 </dependency>
114         </dependencies>
115 </project>