Merge "Double the SSL input packet buffer size"
[controller.git] / opendaylight / md-sal / sal-common-impl / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.controller</groupId>
5         <artifactId>sal-parent</artifactId>
6         <version>1.1-SNAPSHOT</version>
7     </parent>
8     <artifactId>sal-common-impl</artifactId>
9     <packaging>bundle</packaging>
10     <scm>
11         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
14       <tag>HEAD</tag>
15   </scm>
16
17     <dependencies>
18         <dependency>
19             <groupId>org.opendaylight.controller</groupId>
20             <artifactId>sal-common-api</artifactId>
21             <version>1.1-SNAPSHOT</version>
22         </dependency>
23         <dependency>
24             <groupId>org.opendaylight.controller</groupId>
25             <artifactId>sal-common-util</artifactId>
26             <version>1.1-SNAPSHOT</version>
27         </dependency>
28         <dependency>
29             <groupId>com.google.guava</groupId>
30             <artifactId>guava</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.eclipse.xtend</groupId>
34             <artifactId>org.eclipse.xtend.lib</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>junit</groupId>
38             <artifactId>junit</artifactId>
39             <scope>test</scope>
40         </dependency>
41         <dependency>
42             <groupId>org.mockito</groupId>
43             <artifactId>mockito-all</artifactId>
44             <scope>test</scope>
45         </dependency>
46     </dependencies>
47
48     <build>
49         <plugins>
50             <plugin>
51                 <groupId>org.apache.felix</groupId>
52                 <artifactId>maven-bundle-plugin</artifactId>
53                 <configuration>
54                     <instructions>
55                         <Export-Package>
56                             org.opendaylight.controller.md.sal.common.impl,
57                             org.opendaylight.controller.md.sal.common.impl.*
58                         </Export-Package>
59                     </instructions>
60                 </configuration>
61             </plugin>
62             <plugin>
63                 <groupId>org.eclipse.xtend</groupId>
64                 <artifactId>xtend-maven-plugin</artifactId>
65             </plugin>
66         </plugins>
67     </build>
68
69 </project>