pom.xml fix
[portal.git] / ecomp-portal-widget-ms / common-widgets / 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"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4                 <modelVersion>4.0.0</modelVersion>
5
6         <parent>
7                 <groupId>org.onap.portal</groupId>
8                 <artifactId>widget-ms-parent</artifactId>
9                 <version>2.6.0</version>
10         </parent>
11
12         <artifactId>common-widgets</artifactId>
13         <packaging>pom</packaging>
14
15         <properties>
16                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17                 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
18         </properties>
19
20         <build>
21
22                 <plugins>
23
24                         <plugin>
25                                 <artifactId>maven-assembly-plugin</artifactId>
26                                 <!-- <version>2.4</version> -->
27                                 <executions>
28                                         <execution>
29                                                 <id>events</id>
30                                                 <phase>prepare-package</phase>
31                                                 <goals>
32                                                         <goal>single</goal>
33                                                 </goals>
34                                                 <configuration>
35                                                         <descriptor>assembly-descriptor-events.xml</descriptor>
36                                                         <!-- final zip archive name -->
37                                                         <finalName>events-widget</finalName>
38                                                         <appendAssemblyId>false</appendAssemblyId>
39                                                 </configuration>
40                                         </execution>
41                                         <execution>
42                                                 <id>news</id>
43                                                 <phase>prepare-package</phase>
44                                                 <goals>
45                                                         <goal>single</goal>
46                                                 </goals>
47                                                 <configuration>
48                                                         <descriptor>assembly-descriptor-news.xml</descriptor>
49                                                         <!-- final zip archive name -->
50                                                         <finalName>news-widget</finalName>
51                                                         <appendAssemblyId>false</appendAssemblyId>
52                                                 </configuration>
53                                         </execution>
54                                         <execution>
55                                                 <id>resources</id>
56                                                 <phase>prepare-package</phase>
57                                                 <goals>
58                                                         <goal>single</goal>
59                                                 </goals>
60                                                 <configuration>
61                                                         <descriptor>assembly-descriptor-resources.xml</descriptor>
62                                                         <!-- final zip archive name -->
63                                                         <finalName>resources-widget</finalName>
64                                                         <appendAssemblyId>false</appendAssemblyId>
65                                                 </configuration>
66                                         </execution>
67                                 </executions>
68                         </plugin>
69
70                         <!-- No deployment step for this project -->
71                         <plugin>
72                                 <groupId>org.apache.maven.plugins</groupId>
73                                 <artifactId>maven-deploy-plugin</artifactId>
74                                 <version>2.8</version>
75                                 <configuration>
76                                         <skip>true</skip>
77                                 </configuration>
78                         </plugin>
79                 </plugins>
80         </build>
81 </project>