Added support for bridge other-config.
[ovsdb.git] / features / ovs-sfc / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014 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 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.ovsdb</groupId>
16     <artifactId>commons</artifactId>
17     <version>1.3.0-SNAPSHOT</version>
18     <relativePath>../../commons/parent</relativePath>
19   </parent>
20
21   <artifactId>features-ovs-sfc</artifactId>
22   <version>0.1.0-SNAPSHOT</version>
23   <packaging>jar</packaging>
24
25   <properties>
26     <features.file>features.xml</features.file>
27   </properties>
28
29   <dependencies>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>opendaylight-karaf-empty</artifactId>
33       <type>zip</type>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.odlparent</groupId>
37       <artifactId>features-test</artifactId>
38     </dependency>
39   </dependencies>
40
41   <build>
42     <resources>
43       <resource>
44         <filtering>true</filtering>
45         <directory>src/main/resources</directory>
46       </resource>
47     </resources>
48     <plugins>
49       <plugin>
50         <groupId>org.codehaus.mojo</groupId>
51         <artifactId>build-helper-maven-plugin</artifactId>
52         <executions>
53           <execution>
54             <id>attach-artifacts</id>
55             <goals>
56               <goal>attach-artifact</goal>
57             </goals>
58             <phase>package</phase>
59             <configuration>
60               <artifacts>
61                 <artifact>
62                   <file>${project.build.directory}/classes/${features.file}</file>
63                   <type>xml</type>
64                   <classifier>features</classifier>
65                 </artifact>
66               </artifacts>
67             </configuration>
68           </execution>
69         </executions>
70       </plugin>
71       <plugin>
72         <groupId>org.apache.maven.plugins</groupId>
73         <artifactId>maven-surefire-plugin</artifactId>
74         <configuration>
75           <skip>${skip.karaf.featureTest}</skip>
76           <systemPropertyVariables>
77             <karaf.distro.groupId>org.opendaylight.controller</karaf.distro.groupId>
78             <karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId>
79             <karaf.distro.version>1.5.0-SNAPSHOT</karaf.distro.version>
80           </systemPropertyVariables>
81           <dependenciesToScan>
82            <dependency>org.opendaylight.odlparent:features-test</dependency>
83           </dependenciesToScan>
84         </configuration>
85       </plugin>
86     </plugins>
87   </build>
88 </project>