Skeleton for the ovsdb-ui feature
[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.4.0-SNAPSHOT</version>
18     <relativePath>../../commons/parent</relativePath>
19   </parent>
20
21   <artifactId>features-ovs-sfc</artifactId>
22   <version>0.2.0-SNAPSHOT</version>
23   <packaging>jar</packaging>
24   <description>The OVSDB Plugin integration project is a project for OpenDaylight that will implement the Open vSwitch Database RFC 7047 management protocol allowing the Southbound configuration of vSwitches and a network virtualization implementation.</description>
25   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
26   <licenses>
27     <license>
28       <name>Eclipse Public License v1.0</name>
29       <url>http://www.eclipse.org/legal/epl-v10.html</url>
30     </license>
31   </licenses>
32   <developers>
33     <developer>
34       <name>Sam Hague</name>
35       <email>shague@gmail.com</email>
36       <url>https://github.com/shague</url>
37     </developer>
38   </developers>
39   <scm>
40     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
41     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
42     <tag>HEAD</tag>
43     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
44   </scm>
45
46   <properties>
47     <features.file>features.xml</features.file>
48   </properties>
49
50   <dependencies>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>opendaylight-karaf-empty</artifactId>
54       <type>zip</type>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.odlparent</groupId>
58       <artifactId>features-test</artifactId>
59     </dependency>
60   </dependencies>
61
62   <build>
63     <resources>
64       <resource>
65         <filtering>true</filtering>
66         <directory>src/main/resources</directory>
67       </resource>
68     </resources>
69     <plugins>
70       <plugin>
71         <groupId>org.codehaus.mojo</groupId>
72         <artifactId>build-helper-maven-plugin</artifactId>
73         <executions>
74           <execution>
75             <id>attach-artifacts</id>
76             <goals>
77               <goal>attach-artifact</goal>
78             </goals>
79             <phase>package</phase>
80             <configuration>
81               <artifacts>
82                 <artifact>
83                   <file>${project.build.directory}/classes/${features.file}</file>
84                   <type>xml</type>
85                   <classifier>features</classifier>
86                 </artifact>
87               </artifacts>
88             </configuration>
89           </execution>
90         </executions>
91       </plugin>
92       <plugin>
93         <groupId>org.apache.maven.plugins</groupId>
94         <artifactId>maven-surefire-plugin</artifactId>
95         <configuration>
96           <skip>${skip.karaf.featureTest}</skip>
97           <systemPropertyVariables>
98             <karaf.distro.groupId>org.opendaylight.controller</karaf.distro.groupId>
99             <karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId>
100             <karaf.distro.version>1.6.0-SNAPSHOT</karaf.distro.version>
101           </systemPropertyVariables>
102           <dependenciesToScan>
103            <dependency>org.opendaylight.odlparent:features-test</dependency>
104           </dependenciesToScan>
105         </configuration>
106       </plugin>
107     </plugins>
108   </build>
109 </project>