dbf32fbc399a3182bf81581f97db99386106f225
[ovsdb.git] / library / it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015 Red Hat, Inc. and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9
10 <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">
11
12   <parent>
13     <groupId>org.opendaylight.controller</groupId>
14     <artifactId>mdsal-it-parent</artifactId>
15     <version>1.3.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <modelVersion>4.0.0</modelVersion>
20   <groupId>org.opendaylight.ovsdb</groupId>
21   <artifactId>library-it</artifactId>
22   <version>1.2.1-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <properties>
26     <karaf.distro.groupId>org.opendaylight.ovsdb</karaf.distro.groupId>
27     <karaf.distro.artifactId>library-karaf</karaf.distro.artifactId>
28     <karaf.distro.version>1.2.1-SNAPSHOT</karaf.distro.version>
29     <karaf.distro.type>zip</karaf.distro.type>
30   </properties>
31
32   <dependencies>
33     <dependency>
34       <groupId>${project.groupId}</groupId>
35       <artifactId>library-features</artifactId>
36       <version>${project.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.ovsdb</groupId>
40       <artifactId>schema.openvswitch</artifactId>
41       <version>${project.version}</version>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.ovsdb</groupId>
46       <artifactId>schema.hardwarevtep</artifactId>
47       <version>${project.version}</version>
48       <scope>test</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.ovsdb</groupId>
52       <artifactId>library</artifactId>
53       <version>${project.version}</version>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.ovsdb</groupId>
58       <artifactId>utils.servicehelper</artifactId>
59       <version>${project.version}</version>
60       <scope>test</scope>
61     </dependency>
62   </dependencies>
63
64   <profiles>
65     <profile>
66       <id>default</id>
67       <activation>
68         <activeByDefault>true</activeByDefault>
69       </activation>
70       <properties>
71         <skipITs>true</skipITs>
72       </properties>
73     </profile>
74     <profile>
75       <id>integrationtest</id>
76       <activation>
77         <activeByDefault>false</activeByDefault>
78       </activation>
79       <properties>
80         <skipITs>false</skipITs>
81       </properties>
82     </profile>
83   </profiles>
84
85 </project>