Fix incorrect OVSDB class names
[ovsdb.git] / schemas / Open_vSwitch / 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>ovsdb_commons</artifactId>
7     <version>1.1.0-SNAPSHOT</version>
8     <relativePath>../../commons/parent</relativePath>
9   </parent>
10   <artifactId>ovsdb_schema.Open_vSwitch</artifactId>
11   <version>1.0.0-SNAPSHOT</version>
12   <packaging>bundle</packaging>
13
14   <properties>
15     <skip.integrationtest>true</skip.integrationtest>
16   </properties>
17   <dependencies>
18     <dependency>
19       <groupId>ch.qos.logback</groupId>
20       <artifactId>logback-classic</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>ch.qos.logback</groupId>
24       <artifactId>logback-core</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>com.fasterxml.jackson.core</groupId>
28       <artifactId>jackson-annotations</artifactId>
29       <version>${jackson.version}</version>
30     </dependency>
31     <dependency>
32       <groupId>com.fasterxml.jackson.core</groupId>
33       <artifactId>jackson-core</artifactId>
34       <version>${jackson.version}</version>
35     </dependency>
36     <dependency>
37       <groupId>com.fasterxml.jackson.core</groupId>
38       <artifactId>jackson-databind</artifactId>
39       <version>${jackson.version}</version>
40     </dependency>
41     <dependency>
42       <groupId>com.google.code.gson</groupId>
43       <artifactId>gson</artifactId>
44       <version>2.1</version>
45       <scope>compile</scope>
46     </dependency>
47     <dependency>
48       <groupId>com.google.guava</groupId>
49       <artifactId>guava</artifactId>
50       <version>${guava.version}</version>
51     </dependency>
52     <dependency>
53       <groupId>commons-codec</groupId>
54       <artifactId>commons-codec</artifactId>
55       <version>1.4</version>
56       <optional>true</optional>
57     </dependency>
58     <dependency>
59       <groupId>commons-collections</groupId>
60       <artifactId>commons-collections</artifactId>
61       <version>1.0</version>
62     </dependency>
63     <dependency>
64       <groupId>commons-lang</groupId>
65       <artifactId>commons-lang</artifactId>
66       <version>2.3</version>
67     </dependency>
68     <dependency>
69       <groupId>equinoxSDK381</groupId>
70       <artifactId>org.eclipse.osgi</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>io.netty</groupId>
74       <artifactId>netty-all</artifactId>
75       <version>4.0.10.Final</version>
76     </dependency>
77     <dependency>
78       <groupId>javax.portlet</groupId>
79       <artifactId>portlet-api</artifactId>
80       <version>2.0</version>
81     </dependency>
82     <dependency>
83       <groupId>junit</groupId>
84       <artifactId>junit</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.apache.httpcomponents</groupId>
88       <artifactId>httpcore-nio</artifactId>
89       <version>4.2.1</version>
90       <optional>true</optional>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.ovsdb</groupId>
94       <artifactId>ovsdb_library</artifactId>
95       <version>1.0.0-SNAPSHOT</version>
96     </dependency>
97     <dependency>
98       <groupId>org.slf4j</groupId>
99       <artifactId>slf4j-api</artifactId>
100     </dependency>
101   </dependencies>
102
103   <build>
104     <testResources>
105       <testResource>
106         <filtering>true</filtering>
107         <directory>src/test/resources</directory>
108       </testResource>
109     </testResources>
110     <plugins>
111       <plugin>
112         <groupId>org.apache.felix</groupId>
113         <artifactId>maven-bundle-plugin</artifactId>
114         <version>2.3.6</version>
115         <extensions>true</extensions>
116         <configuration>
117           <instructions>
118             <Import-Package>org.opendaylight.ovsdb.lib,
119                 org.opendaylight.ovsdb.lib.jsonrpc,
120                 org.opendaylight.ovsdb.lib.notation,
121                 org.opendaylight.ovsdb.lib.operations,
122                 org.opendaylight.ovsdb.lib.message,
123                 org.opendaylight.ovsdb.lib.schema,
124                 org.opendaylight.ovsdb.lib.schema.typed,
125                 org.apache.commons.lang3.builder,
126                 org.apache.commons.lang3.tuple,
127                 org.apache.felix.dm,
128                 org.slf4j,
129                 org.eclipse.osgi.framework.console,
130                 org.osgi.framework,
131                 javax.net.ssl,
132                 *</Import-Package>
133             <Embed-Transitive>true</Embed-Transitive>
134             <Export-Package>org.opendaylight.ovsdb.schema.openvswitch</Export-Package>
135           </instructions>
136           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
137         </configuration>
138       </plugin>
139       <plugin>
140         <groupId>org.apache.maven.plugins</groupId>
141         <artifactId>maven-failsafe-plugin</artifactId>
142         <configuration>
143           <skipITs>${skip.integrationtest}</skipITs>
144           <includes>
145             <include>**/*IT*</include>
146           </includes>
147         </configuration>
148       </plugin>
149       <plugin>
150         <groupId>org.apache.maven.plugins</groupId>
151         <artifactId>maven-surefire-plugin</artifactId>
152         <version>2.16</version>
153         <configuration>
154           <excludes>
155             <!--  Exclude integration tests -->
156             <exclude>**/*IT*</exclude>
157             <exclude>**/*TestCases*</exclude>
158           </excludes>
159         </configuration>
160       </plugin>
161     </plugins>
162   </build>
163   <scm>
164     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
165     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
166     <tag>HEAD</tag>
167     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
168   </scm>
169
170   <profiles>
171     <profile>
172       <id>integrationtest</id>
173       <activation></activation>
174       <properties>
175         <skip.integrationtest>false</skip.integrationtest>
176       </properties>
177     </profile>
178   </profiles>
179 </project>