Fix broken ovsdb build due to commit in openflowplugin
[ovsdb.git] / features / ovs-sfc / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ /*
4   ~ * Copyright (C) 2014 Red Hat, Inc.
5   ~ *
6   ~ * This program and the accompanying materials are made available under the
7   ~ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
8   ~ * and is available at http://www.eclipse.org/legal/epl-v10.html
9   ~ *
10   ~ * Authors : Sam Hague
11   ~ */
12   -->
13
14 <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">
15   <modelVersion>4.0.0</modelVersion>
16   <parent>
17     <groupId>org.opendaylight.ovsdb</groupId>
18     <artifactId>commons</artifactId>
19     <version>1.3.0-SNAPSHOT</version>
20     <relativePath>../../commons/parent</relativePath>
21   </parent>
22   <artifactId>features-ovs-sfc</artifactId>
23   <name>OpenDaylight OVSDB OVS Service Function Chaining Karaf Features</name>
24   <version>0.1.0-SNAPSHOT</version>
25   <packaging>jar</packaging>
26   <properties>
27     <features.file>features.xml</features.file>
28   </properties>
29   <dependencies>
30     <dependency>
31       <groupId>org.opendaylight.ovsdb</groupId>
32       <artifactId>features-ovsdb</artifactId>
33       <version>${ovsdb.library.version}</version>
34       <classifier>features</classifier>
35       <type>xml</type>
36       </dependency>
37     <dependency>
38       <groupId>org.opendaylight.sfc</groupId>
39       <artifactId>features-sfc</artifactId>
40       <version>0.1.0-SNAPSHOT</version>
41       <classifier>features</classifier>
42       <type>xml</type>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.controller</groupId>
46       <artifactId>features-adsal-compatibility</artifactId>
47       <version>${odl.karaf.base.version}</version>
48       <classifier>features</classifier>
49       <type>xml</type>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.openflowplugin</groupId>
53       <artifactId>features-openflowplugin-extension</artifactId>
54       <version>${openflowplugin.version}</version>
55       <classifier>features</classifier>
56       <type>xml</type>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.yangtools</groupId>
60       <artifactId>features-test</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>opendaylight-karaf-empty</artifactId>
65       <type>zip</type>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.ovsdb</groupId>
69       <artifactId>plugin</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.ovsdb</groupId>
73       <artifactId>ovssfc</artifactId>
74     </dependency>
75   </dependencies>
76   <build>
77     <resources>
78       <resource>
79         <filtering>true</filtering>
80         <directory>src/main/resources</directory>
81       </resource>
82     </resources>
83     <plugins>
84       <plugin>
85         <groupId>org.codehaus.mojo</groupId>
86         <artifactId>build-helper-maven-plugin</artifactId>
87         <executions>
88           <execution>
89             <id>attach-artifacts</id>
90             <goals>
91               <goal>attach-artifact</goal>
92             </goals>
93             <phase>package</phase>
94             <configuration>
95               <artifacts>
96                 <artifact>
97                   <file>${project.build.directory}/classes/${features.file}</file>
98                   <type>xml</type>
99                   <classifier>features</classifier>
100                 </artifact>
101               </artifacts>
102             </configuration>
103           </execution>
104         </executions>
105       </plugin>
106       <plugin>
107         <groupId>org.apache.maven.plugins</groupId>
108         <artifactId>maven-surefire-plugin</artifactId>
109         <configuration>
110           <skip>${skip.karaf}</skip>
111           <systemPropertyVariables>
112             <karaf.distro.groupId>org.opendaylight.controller</karaf.distro.groupId>
113             <karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId>
114             <karaf.distro.version>1.5.0-SNAPSHOT</karaf.distro.version>
115           </systemPropertyVariables>
116           <dependenciesToScan>
117            <dependency>org.opendaylight.yangtools:features-test</dependency>
118           </dependenciesToScan>
119         </configuration>
120       </plugin>
121     </plugins>
122   </build>
123   <scm>
124     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
125     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
126     <tag>HEAD</tag>
127     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
128    </scm>
129 </project>