Introducing Open_vSwitch Typed Schema wrapper on top of the Schema indepedent Library.
[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.table,
120                 org.opendaylight.ovsdb.lib.jsonrpc,
121                 org.opendaylight.ovsdb.lib.notation,
122                 org.opendaylight.ovsdb.lib.database,
123                 org.opendaylight.ovsdb.lib.operations,
124                 org.opendaylight.ovsdb.lib.message,
125                 org.opendaylight.ovsdb.lib.schema,
126                 org.opendaylight.ovsdb.lib.schema.typed,
127                 org.apache.commons.lang3.builder,
128                 org.apache.commons.lang3.tuple,
129                 org.apache.felix.dm,
130                 org.slf4j,
131                 org.eclipse.osgi.framework.console,
132                 org.osgi.framework,
133                 javax.net.ssl,
134                 *</Import-Package>
135             <Embed-Transitive>true</Embed-Transitive>
136             <Export-Package>org.opendaylight.ovsdb.lib.schema.vswitchd</Export-Package>
137           </instructions>
138           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
139         </configuration>
140       </plugin>
141       <plugin>
142         <groupId>org.apache.maven.plugins</groupId>
143         <artifactId>maven-failsafe-plugin</artifactId>
144         <configuration>
145           <skipITs>${skip.integrationtest}</skipITs>
146           <includes>
147             <include>**/*IT*</include>
148           </includes>
149         </configuration>
150       </plugin>
151       <plugin>
152         <groupId>org.apache.maven.plugins</groupId>
153         <artifactId>maven-surefire-plugin</artifactId>
154         <version>2.16</version>
155         <configuration>
156           <excludes>
157             <!--  Exclude integration tests -->
158             <exclude>**/*IT*</exclude>
159           </excludes>
160         </configuration>
161       </plugin>
162     </plugins>
163   </build>
164   <scm>
165     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
166     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
167     <tag>HEAD</tag>
168     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
169   </scm>
170
171   <profiles>
172     <profile>
173       <id>integrationtest</id>
174       <activation></activation>
175       <properties>
176         <skip.integrationtest>false</skip.integrationtest>
177       </properties>
178     </profile>
179   </profiles>
180 </project>