98437700144e3818db899da9f414148a01a8a689
[integration/distribution.git] / distributions / virtualization / pom.xml
1 <!--                                                                                                                                     
2 Adapted from David Erickson's Distribution pom.xml                                                                                       
3 see https://git.opendaylight.org/gerrit/#/c/390/                                                                                         
4 -->
5 <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">
6   <modelVersion>4.0.0</modelVersion>
7   <parent>
8     <groupId>org.opendaylight.integration</groupId>
9     <artifactId>distributions</artifactId>
10     <version>0.2.0-SNAPSHOT</version>
11     <relativePath>../</relativePath>
12   </parent>
13
14   <artifactId>distributions-virtualization</artifactId>
15   <packaging>pom</packaging>
16   <name>Opendaylight Virtualization Edition</name>
17
18   <dependencies>
19
20     <!-- base distribution -->
21     
22     <dependency>
23       <groupId>org.opendaylight.integration</groupId>
24       <artifactId>distributions-base</artifactId>
25       <version>0.2.0-SNAPSHOT</version>
26       <type>zip</type>
27       <classifier>osgipackage</classifier>
28       <!-- Make sure this isn't included on any classpath-->
29       <scope>provided</scope>
30     </dependency>
31
32     <!-- ovsdb --> 
33     <dependency>
34       <groupId>org.opendaylight.ovsdb</groupId>
35       <artifactId>openstack.net-virt</artifactId>
36       <version>1.0.0-SNAPSHOT</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.ovsdb</groupId>
40       <artifactId>openstack.net-virt-providers</artifactId>
41       <version>1.0.0-SNAPSHOT</version>
42     </dependency>
43
44     <!-- vtn -->
45
46     <dependency>
47       <groupId>org.opendaylight.vtn</groupId>
48       <artifactId>manager</artifactId>
49       <version>0.2.0-SNAPSHOT</version>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.vtn</groupId>
53       <artifactId>manager.implementation</artifactId>
54       <version>0.2.0-SNAPSHOT</version>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.vtn</groupId>
58       <artifactId>manager.neutron</artifactId>
59       <version>0.2.0-SNAPSHOT</version>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.vtn</groupId>
63       <artifactId>manager.northbound</artifactId>
64       <version>0.2.0-SNAPSHOT</version>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.vtn</groupId>
68       <artifactId>distribution.vtn-coordinator</artifactId>
69       <version>6.0.0.0-SNAPSHOT</version>
70       <type>tar.bz2</type>
71       <classifier>bin</classifier>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.vtn</groupId>
75       <artifactId>distribution.vtn-coordinator</artifactId>
76       <version>6.0.0.0-SNAPSHOT</version>
77       <type>txt</type>
78       <classifier>README</classifier>
79     </dependency>
80
81     <!-- opendove -->
82
83     <dependency>
84       <groupId>org.opendaylight.opendove</groupId>
85       <artifactId>odmc</artifactId>
86       <version>0.5.2-SNAPSHOT</version>
87     </dependency>
88
89     <dependency>
90       <groupId>org.opendaylight.opendove</groupId>
91       <artifactId>odmc.implementation</artifactId>
92       <version>0.5.2-SNAPSHOT</version>
93     </dependency>
94
95     <dependency>
96       <groupId>org.opendaylight.opendove</groupId>
97       <artifactId>odmc.rest</artifactId>
98       <version>0.5.2-SNAPSHOT</version>
99     </dependency>
100
101
102     <dependency>
103       <groupId>org.opendaylight.opendove</groupId>
104       <artifactId>odmc.rest.northbound</artifactId>
105       <version>0.5.2-SNAPSHOT</version>
106     </dependency>
107
108     <dependency>
109       <groupId>org.opendaylight.opendove</groupId>
110       <artifactId>odmc.rest.southbound</artifactId>
111       <version>0.5.2-SNAPSHOT</version>
112     </dependency>
113
114   </dependencies>
115   <build>
116     <resources>
117       <resource>
118         <directory>${basedir}/src/main/resources</directory>
119       </resource>
120       <resource>
121         <directory>${project.build.directory}/generated-resources</directory>
122         <filtering>true</filtering>
123       </resource>
124     </resources>
125     <plugins>
126       <plugin>
127         <groupId>org.apache.maven.plugins</groupId>
128         <artifactId>maven-dependency-plugin</artifactId>
129         <version>2.8</version>
130         <executions>
131           <execution>
132             <id>unpack-shared-resources</id>
133             <goals>
134               <goal>unpack-dependencies</goal>
135             </goals>
136             <phase>generate-resources</phase>
137             <configuration>
138              <outputDirectory>${project.build.directory}/generated-resources</outputDirectory>
139              <includeArtifacIds>distributions-base</includeArtifacIds>
140              <includeGroupIds>org.opendaylight.integration</includeGroupIds>
141              <excludeTransitive>true</excludeTransitive>
142              <ignorePermissions>false</ignorePermissions>
143             </configuration>
144           </execution>
145         </executions>
146       </plugin>
147       <plugin>
148         <artifactId>maven-assembly-plugin</artifactId>
149         <executions>
150           <execution>
151             <id>distro-assembly</id>
152             <phase>package</phase>
153             <goals>
154               <goal>single</goal>
155             </goals>
156             <configuration>
157               <descriptors>
158                 <descriptor>src/assemble/bin.xml</descriptor>
159               </descriptors>
160             </configuration>
161           </execution>
162         </executions>
163       </plugin>
164     </plugins>
165   </build>
166 </project>