Added Security Rule for Custom ICMP
[ovsdb.git] / ovsdb-plugin-compatibility-layer / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.ovsdb</groupId>
8     <artifactId>commons</artifactId>
9     <version>1.4.0-SNAPSHOT</version>
10     <relativePath>../commons/parent</relativePath>
11   </parent>
12
13   <artifactId>ovsdb-plugin-compatibility-layer</artifactId>
14   <version>1.2.1-SNAPSHOT</version>
15   <name>${project.artifactId}</name>
16   <packaging>bundle</packaging>
17   <description>The OVSDB Plugin integration project is a project for OpenDaylight that will implement the Open vSwitch Database RFC 7047 management protocol allowing the Southbound configuration of vSwitches and a network virtualization implementation.</description>
18   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
19   <licenses>
20     <license>
21       <name>Eclipse Public License v1.0</name>
22       <url>http://www.eclipse.org/legal/epl-v10.html</url>
23     </license>
24   </licenses>
25   <developers>
26     <developer>
27       <name>Sam Hague</name>
28       <email>shague@gmail.com</email>
29       <url>https://github.com/shague</url>
30     </developer>
31   </developers>
32   <scm>
33     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
34     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
35     <tag>HEAD</tag>
36     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
37   </scm>
38
39   <dependencies>
40     <dependency>
41       <groupId>junit</groupId>
42       <artifactId>junit</artifactId>
43       <scope>test</scope>
44     </dependency>
45     <dependency>
46       <groupId>org.apache.felix</groupId>
47       <artifactId>org.apache.felix.dependencymanager</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>sal</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.ovsdb</groupId>
55       <artifactId>plugin</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.ovsdb</groupId>
59       <artifactId>library</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller.model</groupId>
63       <artifactId>model-inventory</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.slf4j</groupId>
67       <artifactId>slf4j-api</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>com.google.guava</groupId>
71       <artifactId>guava</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.slf4j</groupId>
75       <artifactId>slf4j-simple</artifactId>
76       <scope>test</scope>
77     </dependency>
78   </dependencies>
79
80   <build>
81     <testResources>
82       <testResource>
83         <filtering>true</filtering>
84         <directory>src/test/resources</directory>
85       </testResource>
86     </testResources>
87     <plugins>
88       <plugin>
89         <groupId>org.apache.felix</groupId>
90         <artifactId>maven-bundle-plugin</artifactId>
91         <version>2.4.0</version>
92         <extensions>true</extensions>
93         <configuration>
94           <instructions>
95             <Import-Package>
96               org.opendaylight.controller.sal.core,
97               org.opendaylight.controller.sal.utils,
98               org.opendaylight.ovsdb.plugin.api,
99               org.apache.commons.lang3.builder,
100               org.apache.commons.lang3.tuple,
101               org.apache.felix.dm,
102               org.slf4j,
103               org.eclipse.osgi.framework.console,
104               org.osgi.framework,
105               javax.net.ssl,
106               *
107             </Import-Package>
108             <Embed-Dependency>commons-codec,javax.servlet-api,portlet-api,commons-collections,utils.config;type=!pom;inline=false</Embed-Dependency>
109             <Embed-Transitive>true</Embed-Transitive>
110             <Bundle-Activator>org.opendaylight.ovsdb.compatibility.plugin.internal.Activator</Bundle-Activator>
111             <Private-Package>
112               org.opendaylight.ovsdb.compatibility.plugin.impl,
113               org.opendaylight.ovsdb.compatibility.plugin.internal
114             </Private-Package>
115             <Export-Package>
116               org.opendaylight.ovsdb.compatibility.plugin,
117               org.opendaylight.ovsdb.compatibility.plugin.api,
118               org.opendaylight.ovsdb.compatibility.plugin.error
119             </Export-Package>
120           </instructions>
121           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
122         </configuration>
123       </plugin>
124       <plugin>
125         <groupId>org.apache.maven.plugins</groupId>
126         <artifactId>maven-checkstyle-plugin</artifactId>
127       </plugin>
128       <plugin>
129         <groupId>org.apache.maven.plugins</groupId>
130         <artifactId>maven-failsafe-plugin</artifactId>
131       </plugin>
132       <plugin>
133         <groupId>org.jacoco</groupId>
134         <artifactId>jacoco-maven-plugin</artifactId>
135       </plugin>
136     </plugins>
137   </build>
138 </project>