Merge "Fix behaviour of listeners in the InventoryService"
[ovsdb.git] / schemas / hardwarevtep / 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.ovsdb</groupId>
6     <artifactId>commons</artifactId>
7     <version>1.2.0-SNAPSHOT</version>
8     <relativePath>../../commons/parent</relativePath>
9   </parent>
10   <artifactId>schema.hardwarevtep</artifactId>
11   <version>1.0.0-SNAPSHOT</version>
12   <name>OVSDB hardware_vtep Schema</name>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>ch.qos.logback</groupId>
18       <artifactId>logback-classic</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>ch.qos.logback</groupId>
22       <artifactId>logback-core</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>com.fasterxml.jackson.core</groupId>
26       <artifactId>jackson-annotations</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>com.fasterxml.jackson.core</groupId>
30       <artifactId>jackson-core</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>com.fasterxml.jackson.core</groupId>
34       <artifactId>jackson-databind</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>com.google.code.gson</groupId>
38       <artifactId>gson</artifactId>
39       <scope>compile</scope>
40     </dependency>
41     <dependency>
42       <groupId>com.google.guava</groupId>
43       <artifactId>guava</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>commons-codec</groupId>
47       <artifactId>commons-codec</artifactId>
48       <optional>true</optional>
49     </dependency>
50     <dependency>
51       <groupId>commons-collections</groupId>
52       <artifactId>commons-collections</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>commons-lang</groupId>
56       <artifactId>commons-lang</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>equinoxSDK381</groupId>
60       <artifactId>org.eclipse.osgi</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>io.netty</groupId>
64       <artifactId>netty-all</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>javax.portlet</groupId>
68       <artifactId>portlet-api</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>junit</groupId>
72       <artifactId>junit</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.apache.httpcomponents</groupId>
76       <artifactId>httpcore-nio</artifactId>
77       <optional>true</optional>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.ovsdb</groupId>
81       <artifactId>library</artifactId>
82       <version>${ovsdb.library.version}</version>
83     </dependency>
84     <dependency>
85       <groupId>org.slf4j</groupId>
86       <artifactId>slf4j-api</artifactId>
87     </dependency>
88   </dependencies>
89
90   <build>
91     <testResources>
92       <testResource>
93         <filtering>true</filtering>
94         <directory>src/test/resources</directory>
95       </testResource>
96     </testResources>
97     <plugins>
98       <plugin>
99         <groupId>org.apache.felix</groupId>
100         <artifactId>maven-bundle-plugin</artifactId>
101         <version>2.3.6</version>
102         <extensions>true</extensions>
103         <configuration>
104           <instructions>
105             <Import-Package>org.opendaylight.ovsdb.lib,
106                 org.opendaylight.ovsdb.lib.jsonrpc,
107                 org.opendaylight.ovsdb.lib.notation,
108                 org.opendaylight.ovsdb.lib.operations,
109                 org.opendaylight.ovsdb.lib.message,
110                 org.opendaylight.ovsdb.lib.schema,
111                 org.opendaylight.ovsdb.lib.schema.typed,
112                 org.apache.commons.lang3.builder,
113                 org.apache.commons.lang3.tuple,
114                 org.apache.felix.dm,
115                 org.slf4j,
116                 org.eclipse.osgi.framework.console,
117                 org.osgi.framework,
118                 javax.net.ssl,
119                 *</Import-Package>
120             <Embed-Transitive>true</Embed-Transitive>
121             <Export-Package>org.opendaylight.ovsdb.schema.hardwarevtep</Export-Package>
122           </instructions>
123           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
124         </configuration>
125       </plugin>
126       <plugin>
127         <groupId>org.apache.maven.plugins</groupId>
128         <artifactId>maven-checkstyle-plugin</artifactId>
129       </plugin>
130       <plugin>
131         <groupId>org.apache.maven.plugins</groupId>
132         <artifactId>maven-failsafe-plugin</artifactId>
133       </plugin>
134       <plugin>
135         <groupId>org.jacoco</groupId>
136         <artifactId>jacoco-maven-plugin</artifactId>
137       </plugin>
138     </plugins>
139   </build>
140   <scm>
141     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
142     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
143     <tag>HEAD</tag>
144     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
145   </scm>
146 </project>