Fixed a typo in pom.xml s/includeArtifacIds/includeArtifactIds
[netvirt.git] / distribution / opendaylight / 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"
6 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
8 http://maven.apache.org/maven-v4_0_0.xsd">
9   <modelVersion>4.0.0</modelVersion>
10   <parent>
11     <groupId>org.opendaylight.ovsdb</groupId>
12     <artifactId>commons.ovsdb</artifactId>
13     <version>1.0.0-SNAPSHOT</version>
14     <relativePath>../../commons/parent/</relativePath>
15   </parent>
16
17   <artifactId>distribution.ovsdb</artifactId>
18   <packaging>pom</packaging>
19   <name>ovsdb Distribution</name>
20
21   <scm>
22     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
23     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
24     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
25     <tag>HEAD</tag>
26   </scm>
27   <dependencies>
28     <dependency>
29       <groupId>org.opendaylight.controller</groupId>
30       <artifactId>distribution.opendaylight</artifactId>
31       <version>0.1.1-SNAPSHOT</version>
32       <type>zip</type>
33       <classifier>osgipackage</classifier>
34       <!-- Make sure this isn't included on any classpath-->
35       <scope>provided</scope>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.ovsdb</groupId>
39       <artifactId>ovsdb</artifactId>
40       <version>0.5.0-SNAPSHOT</version>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.ovsdb</groupId>
44       <artifactId>ovsdb.northbound</artifactId>
45       <version>0.5.0-SNAPSHOT</version>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.ovsdb</groupId>
49       <artifactId>ovsdb.neutron</artifactId>
50       <version>0.5.0-SNAPSHOT</version>
51     </dependency>
52   </dependencies>
53   <build>
54     <resources>
55       <resource>
56         <directory>${basedir}/src/main/resources</directory>
57       </resource>
58       <resource>
59         <directory>${project.build.directory}/generated-resources</directory>
60         <filtering>true</filtering>
61       </resource>
62     </resources>
63     <plugins>
64       <plugin>
65         <groupId>org.apache.maven.plugins</groupId>
66         <artifactId>maven-dependency-plugin</artifactId>
67         <version>2.8</version>
68         <executions>
69           <execution>
70             <id>unpack-shared-resources</id>
71             <goals>
72               <goal>unpack-dependencies</goal>
73             </goals>
74             <phase>generate-resources</phase>
75             <configuration>
76              <outputDirectory>${project.build.directory}/generated-resources</outputDirectory>
77              <includeArtifactIds>distribution.opendaylight</includeArtifactIds>
78              <includeGroupIds>org.opendaylight.controller</includeGroupIds>
79              <excludeTransitive>true</excludeTransitive>
80              <ignorePermissions>false</ignorePermissions>
81             </configuration>
82           </execution>
83         </executions>
84       </plugin>
85       <plugin>
86         <artifactId>maven-assembly-plugin</artifactId>
87         <executions>
88           <execution>
89             <id>distro-assembly</id>
90             <phase>package</phase>
91             <goals>
92               <goal>single</goal>
93             </goals>
94             <configuration>
95               <descriptors>
96                 <descriptor>src/assemble/bin.xml</descriptor>
97               </descriptors>
98             </configuration>
99           </execution>
100         </executions>
101       </plugin>
102     </plugins>
103   </build>
104 </project>