Pull in the NXM extension infrastructure support into ovsdb distribution
[ovsdb.git] / distribution / opendaylight / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Adapted from David Erickson's Distribution pom.xml
4 see https://git.opendaylight.org/gerrit/#/c/390/
5 -->
6 <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/maven-v4_0_0.xsd">
7   <modelVersion>4.0.0</modelVersion>
8   <parent>
9     <groupId>org.opendaylight.ovsdb</groupId>
10     <artifactId>commons</artifactId>
11     <version>1.2.0-SNAPSHOT</version>
12     <relativePath>../../commons/parent/</relativePath>
13   </parent>
14
15   <artifactId>distribution.ovsdb</artifactId>
16   <packaging>pom</packaging>
17   <name>OpenDaylight OVSDB Distribution</name>
18
19   <properties>
20     <openflowjava.version>0.5-SNAPSHOT</openflowjava.version>
21     <openflowplugin.version>0.0.3-SNAPSHOT</openflowplugin.version>
22     <openflowj.version>1.0.2</openflowj.version>
23   </properties>
24
25   <dependencies>
26     <!-- openflowjava -->
27     <dependency>
28       <groupId>org.opendaylight.openflowjava</groupId>
29       <artifactId>util</artifactId>
30       <version>${openflowjava.version}</version>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.openflowjava</groupId>
34       <artifactId>openflow-protocol-api</artifactId>
35       <version>${openflowjava.version}</version>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.openflowjava</groupId>
39       <artifactId>openflow-protocol-impl</artifactId>
40       <version>${openflowjava.version}</version>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.openflowjava</groupId>
44       <artifactId>openflow-protocol-spi</artifactId>
45       <version>${openflowjava.version}</version>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller.thirdparty</groupId>
49       <artifactId>org.openflow.openflowj</artifactId>
50       <version>${openflowj.version}</version>
51     </dependency>
52     <!-- openflowplugin -->
53     <dependency>
54       <groupId>org.opendaylight.openflowplugin</groupId>
55       <artifactId>openflowplugin</artifactId>
56       <version>${openflowplugin.version}</version>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.openflowplugin</groupId>
60       <artifactId>openflowplugin-api</artifactId>
61       <version>${openflowplugin.version}</version>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.openflowplugin</groupId>
65       <artifactId>openflowplugin-extension-api</artifactId>
66       <version>${openflowplugin.version}</version>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.openflowplugin</groupId>
70       <artifactId>openflowplugin-extension-nicira</artifactId>
71       <version>${openflowplugin.version}</version>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.openflowplugin</groupId>
75       <artifactId>openflowjava-extension-nicira-api</artifactId>
76       <version>${openflowplugin.version}</version>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.openflowplugin</groupId>
80       <artifactId>openflowjava-extension-nicira</artifactId>
81       <version>${openflowplugin.version}</version>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.openflowplugin</groupId>
85       <artifactId>openflowplugin-controller-config</artifactId>
86       <version>${openflowplugin.version}</version>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.ovsdb</groupId>
90       <artifactId>library</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.ovsdb</groupId>
94       <artifactId>openstack.net-virt</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.ovsdb</groupId>
98       <artifactId>openstack.net-virt-providers</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.ovsdb</groupId>
102       <artifactId>northbound</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.ovsdb</groupId>
106       <artifactId>plugin</artifactId>
107     </dependency>
108     <dependency>
109       <groupId>org.opendaylight.ovsdb</groupId>
110       <artifactId>plugin-mdsal-adapter</artifactId>
111     </dependency>
112     <dependency>
113       <groupId>org.opendaylight.ovsdb</groupId>
114       <artifactId>schema.openvswitch</artifactId>
115     </dependency>
116     <dependency>
117       <groupId>org.opendaylight.ovsdb</groupId>
118       <artifactId>schema.hardwarevtep</artifactId>
119     </dependency>
120     <dependency>
121       <groupId>org.opendaylight.controller</groupId>
122       <artifactId>distribution.opendaylight</artifactId>
123       <version>0.1.2-SNAPSHOT</version>
124       <classifier>osgipackage</classifier>
125       <type>zip</type>
126       <!-- Make sure this isn't included on any classpath-->
127       <scope>provided</scope>
128     </dependency>
129   </dependencies>
130   <build>
131     <resources>
132       <resource>
133         <directory>${basedir}/src/main/resources</directory>
134       </resource>
135       <resource>
136         <filtering>true</filtering>
137         <directory>${project.build.directory}/generated-resources</directory>
138       </resource>
139     </resources>
140     <plugins>
141       <plugin>
142         <artifactId>maven-assembly-plugin</artifactId>
143         <executions>
144           <execution>
145             <id>distro-assembly</id>
146             <goals>
147               <goal>single</goal>
148             </goals>
149             <phase>package</phase>
150             <configuration>
151               <descriptors>
152                 <descriptor>src/assemble/bin.xml</descriptor>
153               </descriptors>
154             </configuration>
155           </execution>
156         </executions>
157       </plugin>
158       <plugin>
159         <groupId>org.apache.maven.plugins</groupId>
160         <artifactId>maven-dependency-plugin</artifactId>
161         <version>2.8</version>
162         <executions>
163           <execution>
164             <id>unpack-shared-resources</id>
165             <goals>
166               <goal>unpack-dependencies</goal>
167             </goals>
168             <phase>generate-resources</phase>
169             <configuration>
170               <outputDirectory>${project.build.directory}/generated-resources</outputDirectory>
171               <includeArtifactIds>distribution.opendaylight</includeArtifactIds>
172               <includeGroupIds>org.opendaylight.controller</includeGroupIds>
173               <excludeTransitive>true</excludeTransitive>
174               <ignorePermissions>false</ignorePermissions>
175             </configuration>
176           </execution>
177           <execution>
178             <id>unpack-provided-configs</id>
179             <goals>
180               <goal>unpack-dependencies</goal>
181             </goals>
182             <phase>generate-resources</phase>
183             <configuration>
184               <outputDirectory>${project.build.directory}/provided-configs</outputDirectory>
185               <includeArtifactIds>openflowplugin-controller-config</includeArtifactIds>
186               <includes>**\/*.xml</includes>
187               <excludeTransitive>true</excludeTransitive>
188               <ignorePermissions>false</ignorePermissions>
189             </configuration>
190           </execution>
191         </executions>
192       </plugin>
193     </plugins>
194   </build>
195   <scm>
196     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
197     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
198     <tag>HEAD</tag>
199     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
200   </scm>
201 </project>