Parsing bridge names on new Southbound, Yang changes
[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.yangtools</groupId>
32       <artifactId>features-test</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>opendaylight-karaf-empty</artifactId>
37       <type>zip</type>
38     </dependency>
39   </dependencies>
40   <build>
41     <resources>
42       <resource>
43         <filtering>true</filtering>
44         <directory>src/main/resources</directory>
45       </resource>
46     </resources>
47     <plugins>
48       <plugin>
49         <groupId>org.codehaus.mojo</groupId>
50         <artifactId>build-helper-maven-plugin</artifactId>
51         <executions>
52           <execution>
53             <id>attach-artifacts</id>
54             <goals>
55               <goal>attach-artifact</goal>
56             </goals>
57             <phase>package</phase>
58             <configuration>
59               <artifacts>
60                 <artifact>
61                   <file>${project.build.directory}/classes/${features.file}</file>
62                   <type>xml</type>
63                   <classifier>features</classifier>
64                 </artifact>
65               </artifacts>
66             </configuration>
67           </execution>
68         </executions>
69       </plugin>
70       <plugin>
71         <groupId>org.apache.maven.plugins</groupId>
72         <artifactId>maven-surefire-plugin</artifactId>
73         <configuration>
74           <skip>${skip.karaf}</skip>
75           <systemPropertyVariables>
76             <karaf.distro.groupId>org.opendaylight.controller</karaf.distro.groupId>
77             <karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId>
78             <karaf.distro.version>1.5.0-SNAPSHOT</karaf.distro.version>
79           </systemPropertyVariables>
80           <dependenciesToScan>
81            <dependency>org.opendaylight.yangtools:features-test</dependency>
82           </dependenciesToScan>
83         </configuration>
84       </plugin>
85     </plugins>
86   </build>
87   <scm>
88     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
89     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
90     <tag>HEAD</tag>
91     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
92    </scm>
93 </project>