Merge "Silent false positive, and enhance real error message"
[controller.git] / opendaylight / configuration / 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   <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:Main</url>
15   </scm>
16
17   <artifactId>configuration.implementation</artifactId>
18   <version>0.4.0-SNAPSHOT</version>
19   <packaging>bundle</packaging>
20
21   <build>
22     <plugins>
23       <plugin>
24         <groupId>org.apache.felix</groupId>
25         <artifactId>maven-bundle-plugin</artifactId>
26         <version>${bundle.plugin.version}</version>
27         <extensions>true</extensions>
28         <configuration>
29           <instructions>
30             <Import-Package>
31               org.opendaylight.controller.configuration,
32               org.opendaylight.controller.clustering.services,
33               org.opendaylight.controller.sal.utils,
34               org.opendaylight.controller.sal.core,
35               org.osgi.framework,
36               org.slf4j,
37               org.apache.felix.dm
38             </Import-Package>
39             <Export-Package>
40             </Export-Package>
41             <Bundle-Activator>
42               org.opendaylight.controller.configuration.internal.Activator
43             </Bundle-Activator>
44           </instructions>
45           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
46         </configuration>
47       </plugin>
48     </plugins>
49   </build>
50   <dependencies>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>clustering.services</artifactId>
54       <version>0.4.0-SNAPSHOT</version>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>configuration</artifactId>
59       <version>0.4.0-SNAPSHOT</version>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>sal</artifactId>
64       <version>0.5.0-SNAPSHOT</version>
65     </dependency>
66   </dependencies>
67 </project>