Adding Nicira action NXAST_MULTIPATH, appropriate SAL connectors,
[ovsdb.git] / features / 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.yangtools</groupId>
41       <artifactId>features-test</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>opendaylight-karaf-empty</artifactId>
46       <type>zip</type>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.ovsdb</groupId>
50       <artifactId>library</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.ovsdb</groupId>
54       <artifactId>northbound</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.ovsdb</groupId>
58       <artifactId>plugin</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.ovsdb</groupId>
62       <artifactId>plugin-shell</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.ovsdb</groupId>
66       <artifactId>schema.openvswitch</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.ovsdb</groupId>
70       <artifactId>schema.hardwarevtep</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>com.google.code.gson</groupId>
74       <artifactId>gson</artifactId>
75       <scope>compile</scope>
76     </dependency>
77     <dependency>
78       <groupId>orbit</groupId>
79       <artifactId>org.apache.catalina</artifactId>
80       <version>7.0.53.v201406061610</version>
81     </dependency>
82     <dependency>
83       <groupId>orbit</groupId>
84       <artifactId>org.apache.catalina.ha</artifactId>
85       <version>7.0.53.v201406070630</version>
86     </dependency>
87     <dependency>
88       <groupId>orbit</groupId>
89       <artifactId>org.apache.catalina.tribes</artifactId>
90       <version>7.0.53.v201406070630</version>
91     </dependency>
92     <dependency>
93       <groupId>orbit</groupId>
94       <artifactId>org.apache.coyote</artifactId>
95       <version>7.0.53.v201406070630</version>
96     </dependency>
97     <dependency>
98       <groupId>orbit</groupId>
99       <artifactId>org.apache.el</artifactId>
100       <version>7.0.53.v201406060720</version>
101     </dependency>
102     <dependency>
103       <groupId>orbit</groupId>
104       <artifactId>org.apache.jasper</artifactId>
105       <version>7.0.53.v201406070630</version>
106     </dependency>
107     <dependency>
108       <groupId>orbit</groupId>
109       <artifactId>org.apache.juli.extras</artifactId>
110       <version>7.0.53.v201406060720</version>
111     </dependency>
112     <dependency>
113       <groupId>orbit</groupId>
114       <artifactId>org.apache.tomcat.api</artifactId>
115       <version>7.0.53.v201406060720</version>
116     </dependency>
117     <dependency>
118       <groupId>orbit</groupId>
119       <artifactId>org.apache.tomcat.util</artifactId>
120       <version>7.0.53.v201406070630</version>
121     </dependency>
122   </dependencies>
123   <build>
124     <resources>
125       <resource>
126         <filtering>true</filtering>
127         <directory>src/main/resources</directory>
128       </resource>
129     </resources>
130     <plugins>
131       <plugin>
132         <groupId>org.apache.maven.plugins</groupId>
133         <artifactId>maven-resources-plugin</artifactId>
134         <executions>
135           <execution>
136             <id>filter</id>
137             <goals>
138               <goal>resources</goal>
139             </goals>
140             <phase>generate-resources</phase>
141           </execution>
142         </executions>
143       </plugin>
144       <plugin>
145         <groupId>org.codehaus.mojo</groupId>
146         <artifactId>build-helper-maven-plugin</artifactId>
147         <executions>
148           <execution>
149             <id>attach-artifacts</id>
150             <goals>
151               <goal>attach-artifact</goal>
152             </goals>
153             <phase>package</phase>
154             <configuration>
155               <artifacts>
156                 <artifact>
157                   <file>${project.build.directory}/classes/${features.file}</file>
158                   <type>xml</type>
159                   <classifier>features</classifier>
160                 </artifact>
161               </artifacts>
162             </configuration>
163           </execution>
164         </executions>
165       </plugin>
166       <plugin>
167         <groupId>org.apache.maven.plugins</groupId>
168         <artifactId>maven-surefire-plugin</artifactId>
169         <configuration>
170           <systemPropertyVariables>
171             <karaf.distro.groupId>org.opendaylight.controller</karaf.distro.groupId>
172             <karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId>
173             <karaf.distro.version>1.4.2-SNAPSHOT</karaf.distro.version>
174           </systemPropertyVariables>
175           <dependenciesToScan>
176            <dependency>org.opendaylight.yangtools:features-test</dependency>
177           </dependenciesToScan>
178         </configuration>
179       </plugin>
180     </plugins>
181   </build>
182   <scm>
183     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
184     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
185     <tag>HEAD</tag>
186     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
187    </scm>
188 </project>