Merge "L3 Neutron plumbing"
[netvirt.git] / features / ovsdb / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.ovsdb</groupId>
6     <artifactId>commons</artifactId>
7     <version>1.2.0-SNAPSHOT</version>
8     <relativePath>../../commons/parent</relativePath>
9   </parent>
10   <artifactId>features-ovsdb</artifactId>
11   <name>OpenDaylight OVSDB Project Karaf Features</name>
12   <version>1.0.0-SNAPSHOT</version>
13   <packaging>jar</packaging>
14   <properties>
15     <features.file>features.xml</features.file>
16   </properties>
17   <dependencies>
18     <dependency>
19       <groupId>org.opendaylight.controller</groupId>
20       <artifactId>features-base</artifactId>
21       <version>${odl.karaf.base.version}</version>
22       <classifier>features</classifier>
23       <type>xml</type>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>features-adsal</artifactId>
28       <version>${sal.version}</version>
29       <classifier>features</classifier>
30       <type>xml</type>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>features-nsf</artifactId>
35       <version>${nsf.version}</version>
36       <classifier>features</classifier>
37       <type>xml</type>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.ovsdb</groupId>
41       <artifactId>features-openflow-nxm</artifactId>
42       <version>${openflowplugin.version}</version>
43       <classifier>features</classifier>
44       <type>xml</type>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.yangtools</groupId>
48       <artifactId>features-test</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>opendaylight-karaf-empty</artifactId>
53       <type>zip</type>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.ovsdb</groupId>
57       <artifactId>library</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.ovsdb</groupId>
61       <artifactId>northbound</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.ovsdb</groupId>
65       <artifactId>openstack.net-virt</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.ovsdb</groupId>
69       <artifactId>openstack.net-virt-providers</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.ovsdb</groupId>
73       <artifactId>plugin</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.ovsdb</groupId>
77       <artifactId>plugin-shell</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.ovsdb</groupId>
81       <artifactId>schema.openvswitch</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.ovsdb</groupId>
85       <artifactId>schema.hardwarevtep</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>com.google.code.gson</groupId>
89       <artifactId>gson</artifactId>
90       <scope>compile</scope>
91     </dependency>
92     <dependency>
93       <groupId>orbit</groupId>
94       <artifactId>org.apache.catalina</artifactId>
95       <version>7.0.53.v201406061610</version>
96     </dependency>
97     <dependency>
98       <groupId>orbit</groupId>
99       <artifactId>org.apache.catalina.ha</artifactId>
100       <version>7.0.53.v201406070630</version>
101     </dependency>
102     <dependency>
103       <groupId>orbit</groupId>
104       <artifactId>org.apache.catalina.tribes</artifactId>
105       <version>7.0.53.v201406070630</version>
106     </dependency>
107     <dependency>
108       <groupId>orbit</groupId>
109       <artifactId>org.apache.coyote</artifactId>
110       <version>7.0.53.v201406070630</version>
111     </dependency>
112     <dependency>
113       <groupId>orbit</groupId>
114       <artifactId>org.apache.el</artifactId>
115       <version>7.0.53.v201406060720</version>
116     </dependency>
117     <dependency>
118       <groupId>orbit</groupId>
119       <artifactId>org.apache.jasper</artifactId>
120       <version>7.0.53.v201406070630</version>
121     </dependency>
122     <dependency>
123       <groupId>orbit</groupId>
124       <artifactId>org.apache.juli.extras</artifactId>
125       <version>7.0.53.v201406060720</version>
126     </dependency>
127     <dependency>
128       <groupId>orbit</groupId>
129       <artifactId>org.apache.tomcat.api</artifactId>
130       <version>7.0.53.v201406060720</version>
131     </dependency>
132     <dependency>
133       <groupId>orbit</groupId>
134       <artifactId>org.apache.tomcat.util</artifactId>
135       <version>7.0.53.v201406070630</version>
136     </dependency>
137   </dependencies>
138   <build>
139     <resources>
140       <resource>
141         <filtering>true</filtering>
142         <directory>src/main/resources</directory>
143       </resource>
144     </resources>
145     <plugins>
146       <plugin>
147         <groupId>org.apache.maven.plugins</groupId>
148         <artifactId>maven-resources-plugin</artifactId>
149         <executions>
150           <execution>
151             <id>filter</id>
152             <goals>
153               <goal>resources</goal>
154             </goals>
155             <phase>generate-resources</phase>
156           </execution>
157         </executions>
158       </plugin>
159       <plugin>
160         <groupId>org.codehaus.mojo</groupId>
161         <artifactId>build-helper-maven-plugin</artifactId>
162         <executions>
163           <execution>
164             <id>attach-artifacts</id>
165             <goals>
166               <goal>attach-artifact</goal>
167             </goals>
168             <phase>package</phase>
169             <configuration>
170               <artifacts>
171                 <artifact>
172                   <file>${project.build.directory}/classes/${features.file}</file>
173                   <type>xml</type>
174                   <classifier>features</classifier>
175                 </artifact>
176               </artifacts>
177             </configuration>
178           </execution>
179         </executions>
180       </plugin>
181       <plugin>
182         <groupId>org.apache.maven.plugins</groupId>
183         <artifactId>maven-surefire-plugin</artifactId>
184         <configuration>
185           <systemPropertyVariables>
186             <karaf.distro.groupId>org.opendaylight.controller</karaf.distro.groupId>
187             <karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId>
188             <karaf.distro.version>1.4.2-SNAPSHOT</karaf.distro.version>
189           </systemPropertyVariables>
190           <dependenciesToScan>
191            <dependency>org.opendaylight.yangtools:features-test</dependency>
192           </dependenciesToScan>
193         </configuration>
194       </plugin>
195     </plugins>
196   </build>
197   <scm>
198     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
199     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
200     <tag>HEAD</tag>
201     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
202    </scm>
203 </project>