Merge "BUG 720 - YANG leaf as JSON input *<*:* couldn't be saved"
[controller.git] / opendaylight / sal / implementation / 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.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.5.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>sal.implementation</artifactId>
12   <version>0.5.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>equinoxSDK381</groupId>
17       <artifactId>org.eclipse.osgi</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>sal</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>junit</groupId>
25       <artifactId>junit</artifactId>
26       <scope>test</scope>
27     </dependency>
28   </dependencies>
29
30   <build>
31     <plugins>
32       <plugin>
33         <groupId>org.apache.felix</groupId>
34         <artifactId>maven-bundle-plugin</artifactId>
35         <extensions>true</extensions>
36         <configuration>
37           <instructions>
38             <Import-Package>org.slf4j,
39               org.apache.commons.lang3.builder,
40               org.opendaylight.controller.sal.core,
41               org.opendaylight.controller.sal.packet,
42               org.opendaylight.controller.sal.inventory,
43               org.opendaylight.controller.sal.flowprogrammer,
44               org.opendaylight.controller.sal.reader,
45               org.opendaylight.controller.sal.topology,
46               org.opendaylight.controller.sal.action,
47               org.opendaylight.controller.sal.match,
48               org.opendaylight.controller.sal.utils,
49               org.apache.felix.dm,
50               org.eclipse.osgi.framework.console,
51               org.osgi.framework</Import-Package>
52             <Export-Package></Export-Package>
53             <Bundle-Activator>org.opendaylight.controller.sal.implementation.internal.Activator</Bundle-Activator>
54           </instructions>
55           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
56         </configuration>
57       </plugin>
58     </plugins>
59   </build>
60   <scm>
61     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
62     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
63     <tag>HEAD</tag>
64     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
65   </scm>
66 </project>