[maven-release-plugin] prepare release lispflowmapping-all-1.1.4
[lispflowmapping.git] / distribution / pom.xml
1 <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">
2   <modelVersion>4.0.0</modelVersion>
3   <parent>
4     <groupId>org.opendaylight.lispflowmapping</groupId>
5     <artifactId>lispflowmapping-commons</artifactId>
6     <relativePath>../commons/parent</relativePath>
7     <version>1.1.4</version>
8   </parent>
9
10   <artifactId>lispflowmapping-distribution</artifactId>
11   <packaging>pom</packaging>
12   <name>LISP Flow Mapping Distribution</name>
13
14   <scm>
15     <connection>scm:git:https://git.opendaylight.org/gerrit/p/lispflowmapping.git</connection>
16     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/lispflowmapping.git</developerConnection>
17     <url>https://wiki.opendaylight.org/view/OpenDaylight_Lisp_Flow_Mapping:Main</url>
18     <tag>lispflowmapping-all-1.1.4</tag>
19   </scm>
20   <dependencies>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>distribution.opendaylight</artifactId>
24       <version>0.1.1</version>
25       <type>zip</type>
26       <classifier>osgipackage</classifier>
27       <!-- Make sure this isn't included on any classpath-->
28       <scope>provided</scope>
29     </dependency>
30
31                 <dependency>
32                         <groupId>org.opendaylight.lispflowmapping</groupId>
33                         <artifactId>mappingservice.yangmodel</artifactId>
34                 </dependency>
35                 
36                 <dependency>
37                         <groupId>org.opendaylight.lispflowmapping</groupId>
38                         <artifactId>mappingservice.api</artifactId>
39                 </dependency>
40                 
41                 <dependency>
42                         <groupId>org.opendaylight.lispflowmapping</groupId>
43                         <artifactId>mappingservice.config</artifactId>
44                 </dependency>
45                 
46                 <dependency>
47                         <groupId>org.opendaylight.lispflowmapping</groupId>
48                         <artifactId>mappingservice.implementation</artifactId>
49                 </dependency>
50                 <dependency>
51                         <groupId>org.opendaylight.lispflowmapping</groupId>
52                         <artifactId>mappingservice.clusterdao</artifactId>
53                 </dependency>
54                 
55                 <dependency>
56                         <groupId>org.opendaylight.lispflowmapping</groupId>
57                         <artifactId>mappingservice.southbound</artifactId>
58                 </dependency>
59                 
60                 <dependency>
61                         <groupId>org.opendaylight.lispflowmapping</groupId>
62                         <artifactId>mappingservice.northbound</artifactId>
63                 </dependency>
64                 
65   </dependencies>
66
67   <build>
68     <resources>
69       <resource>
70         <directory>${basedir}/src/main/resources</directory>
71       </resource>
72       <resource>
73         <directory>${project.build.directory}/generated-resources</directory>
74         <filtering>true</filtering>
75       </resource>
76     </resources>
77     <plugins>
78       <plugin>
79         <groupId>org.apache.maven.plugins</groupId>
80         <artifactId>maven-dependency-plugin</artifactId>
81         <executions>
82           <execution>
83             <id>unpack-shared-resources</id>
84             <goals>
85               <goal>unpack-dependencies</goal>
86             </goals>
87             <phase>generate-resources</phase>
88             <configuration>
89              <outputDirectory>${project.build.directory}/generated-resources</outputDirectory>
90              <includeArtifacIds>distribution.opendaylight</includeArtifacIds>
91              <includeGroupIds>org.opendaylight.controller</includeGroupIds>
92              <excludeTransitive>true</excludeTransitive>
93             </configuration>
94           </execution>
95         </executions>
96       </plugin>
97       <plugin>
98         <artifactId>maven-assembly-plugin</artifactId>
99         <executions>
100           <execution>
101             <id>distro-assembly</id>
102             <phase>package</phase>
103             <goals>
104               <goal>single</goal>
105             </goals>
106             <configuration>
107               <descriptors>
108                 <descriptor>src/assemble/bin.xml</descriptor>
109               </descriptors>
110             </configuration>
111           </execution>
112         </executions>
113       </plugin>
114     </plugins>
115   </build>
116 </project>