Should not allow nodes to have same node name
[controller.git] / opendaylight / switchmanager / implementation / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>commons.opendaylight</artifactId>
8     <version>1.4.0-SNAPSHOT</version>
9     <relativePath>../../commons/opendaylight</relativePath>
10   </parent>
11
12   <artifactId>switchmanager.implementation</artifactId>
13   <version>0.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <properties>
17     <!-- Sonar properties using jacoco to retrieve integration test results -->
18     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
19     <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
20     <sonar.jacoco.Reportpath>target/jacoco.exec</sonar.jacoco.Reportpath>
21     <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
22     <sonar.language>java</sonar.language>
23   </properties>
24   <build>
25     <pluginManagement>
26       <plugins>
27         <plugin>
28           <groupId>org.jacoco</groupId>
29           <artifactId>jacoco-maven-plugin</artifactId>
30           <version>0.5.3.201107060350</version>
31         </plugin>
32       </plugins>
33     </pluginManagement>
34     <plugins>
35       <plugin>
36         <groupId>org.apache.felix</groupId>
37         <artifactId>maven-bundle-plugin</artifactId>
38         <version>2.3.6</version>
39         <extensions>true</extensions>
40         <configuration>
41           <instructions>
42             <Export-Package>
43             </Export-Package>
44             <Import-Package>
45               org.opendaylight.controller.switchmanager,
46               org.opendaylight.controller.clustering.services,
47               org.opendaylight.controller.configuration,
48               org.opendaylight.controller.sal.core,
49               org.opendaylight.controller.sal.utils,
50               org.opendaylight.controller.sal.packet,
51               org.opendaylight.controller.sal.reader,
52               org.opendaylight.controller.sal.inventory,
53               org.opendaylight.controller.statisticsmanager,
54               org.slf4j,
55               org.apache.felix.dm,
56               org.eclipse.osgi.framework.console,
57               org.osgi.framework,
58               org.apache.felix.service.command,
59               javax.xml.bind.annotation,
60               org.apache.commons.lang3.builder
61             </Import-Package>
62             <Bundle-Activator>
63               org.opendaylight.controller.switchmanager.internal.Activator
64             </Bundle-Activator>
65           </instructions>
66           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
67         </configuration>
68       </plugin>
69       <plugin>
70         <groupId>org.jacoco</groupId>
71         <artifactId>jacoco-maven-plugin</artifactId>
72         <configuration>
73           <includes>org.opendaylight.controller.*</includes>
74         </configuration>
75         <executions>
76           <execution>
77             <id>pre-test</id>
78             <goals>
79               <goal>prepare-agent</goal>
80             </goals>
81           </execution>
82           <execution>
83             <id>post-test</id>
84             <phase>test</phase>
85             <goals>
86               <goal>report</goal>
87             </goals>
88           </execution>
89         </executions>
90       </plugin>
91     </plugins>
92   </build>
93   <dependencies>
94     <dependency>
95       <groupId>org.opendaylight.controller</groupId>
96       <artifactId>clustering.services</artifactId>
97       <version>0.4.0-SNAPSHOT</version>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.controller</groupId>
101       <artifactId>configuration</artifactId>
102       <version>0.4.0-SNAPSHOT</version>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.controller</groupId>
106       <artifactId>sal</artifactId>
107       <version>0.5.0-SNAPSHOT</version>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.controller</groupId>
111       <artifactId>switchmanager</artifactId>
112       <version>0.5.0-SNAPSHOT</version>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.controller</groupId>
116       <artifactId>statisticsmanager</artifactId>
117       <version>0.4.0-SNAPSHOT</version>
118     </dependency>
119   </dependencies>
120 </project>