Repair widget-ms problem; adjust sonar in poms
[portal.git] / ecomp-portal-widget-ms / widget-ms / 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         <!-- This project must name Spring as parent; cannot name Portal -->
7         <parent>
8                 <groupId>org.springframework.boot</groupId>
9                 <artifactId>spring-boot-starter-parent</artifactId>
10                 <version>1.4.2.RELEASE</version>
11                 <relativePath /> <!-- lookup parent from repository -->
12         </parent>
13
14         <groupId>org.onap.portal</groupId>
15         <artifactId>widget-ms</artifactId>
16         <version>1.3.0</version>
17         <packaging>jar</packaging>
18         <name>widget-microservice</name>
19
20         <properties>
21                 <docker.imagename>widget-ms</docker.imagename>
22                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23                 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
24                 <java.version>1.8</java.version>
25                 <hibernate.version>4.3.11.Final</hibernate.version>
26                 <skipTests>true</skipTests>
27                 <!-- Replicate this from OParent -->
28                 <jacocoVersion>0.7.6.201602180812</jacocoVersion>
29         </properties>
30
31         <dependencies>
32                 <!-- This pom pulls in artifacts -->
33                 <dependency>
34                         <groupId>org.onap.portal</groupId>
35                         <artifactId>common-widgets</artifactId>
36                         <version>${project.version}</version>
37                         <type>pom</type>
38                 </dependency>
39                 <dependency>
40                         <!-- Setup Spring Data JPA Repository support -->
41                         <groupId>org.springframework.boot</groupId>
42                         <artifactId>spring-boot-starter-data-jpa</artifactId>
43                 </dependency>
44                 <dependency>
45                         <groupId>org.springframework.boot</groupId>
46                         <artifactId>spring-boot-starter-security</artifactId>
47                 </dependency>
48                 <dependency>
49                         <groupId>org.springframework.boot</groupId>
50                         <artifactId>spring-boot-starter-thymeleaf</artifactId>
51                 </dependency>
52                 <dependency>
53                         <groupId>org.springframework.boot</groupId>
54                         <artifactId>spring-boot-devtools</artifactId>
55                         <optional>true</optional>
56                 </dependency>
57                 <dependency>
58                         <groupId>org.springframework.boot</groupId>
59                         <artifactId>spring-boot-configuration-processor</artifactId>
60                         <optional>true</optional>
61                 </dependency>
62                 <dependency>
63                         <groupId>org.hibernate</groupId>
64                         <artifactId>hibernate-core</artifactId>
65                         <!-- <version>${hibernate.version}</version> -->
66                 </dependency>
67                 <dependency>
68                         <groupId>org.springframework.boot</groupId>
69                         <artifactId>spring-boot-starter</artifactId>
70                 </dependency>
71                 <dependency>
72                         <groupId>org.springframework.boot</groupId>
73                         <artifactId>spring-boot-starter-test</artifactId>
74                         <scope>test</scope>
75                 </dependency>
76                 <dependency>
77                         <groupId>org.springframework.boot</groupId>
78                         <artifactId>spring-boot-starter-web</artifactId>
79                 </dependency>
80                 <dependency>
81                         <groupId>commons-codec</groupId>
82                         <artifactId>commons-codec</artifactId>
83                         <!-- <version>1.10</version> -->
84                 </dependency>
85                 <dependency>
86                         <groupId>org.mariadb.jdbc</groupId>
87                         <artifactId>mariadb-java-client</artifactId>
88                         <!-- <version>1.5.8</version> -->
89                 </dependency>
90                 <dependency>
91                         <groupId>com.github.ulisesbocchio</groupId>
92                         <artifactId>jasypt-spring-boot-starter</artifactId>
93                         <version>1.9</version>
94                 </dependency>
95                 <!-- hibernate-core depends on dom4j, which has optional dependencies. 
96                         On jenkins, contrary to doc, mvn 3.0.5 packages the optional dependencies 
97                         in the war. Workaround: exclude them explicitly. -->
98                 <dependency>
99                         <groupId>dom4j</groupId>
100                         <artifactId>dom4j</artifactId>
101                         <!-- <version>1.6.1</version> -->
102                         <exclusions>
103                                 <exclusion>
104                                         <groupId>jaxme</groupId>
105                                         <artifactId>jaxme-api</artifactId>
106                                 </exclusion>
107                                 <exclusion>
108                                         <groupId>jaxen</groupId>
109                                         <artifactId>jaxen</artifactId>
110                                 </exclusion>
111                                 <exclusion>
112                                         <groupId>msv</groupId>
113                                         <artifactId>xsdlib</artifactId>
114                                 </exclusion>
115                                 <exclusion>
116                                         <groupId>msv</groupId>
117                                         <artifactId>relaxngDatatype</artifactId>
118                                 </exclusion>
119                                 <exclusion>
120                                         <groupId>pull-parser</groupId>
121                                         <artifactId>pull-parser</artifactId>
122                                 </exclusion>
123                                 <exclusion>
124                                         <groupId>xpp3</groupId>
125                                         <artifactId>xpp3</artifactId>
126                                 </exclusion>
127                                 <exclusion>
128                                         <groupId>stax</groupId>
129                                         <artifactId>stax-api</artifactId>
130                                 </exclusion>
131                         </exclusions>
132                 </dependency>
133                 <!-- Jacoco offline instrumentation agent -->
134                 <dependency>
135                         <groupId>org.jacoco</groupId>
136                         <artifactId>org.jacoco.agent</artifactId>
137                         <version>${jacocoVersion}</version>
138                         <classifier>runtime</classifier>
139                 </dependency>
140         </dependencies>
141
142         <build>
143
144                 <finalName>${project.artifactId}</finalName>
145
146                 <!-- To add resources, must name all including usual src/main/resources -->
147                 <resources>
148                         <resource>
149                                 <directory>src/main/resources</directory>
150                                 <filtering>true</filtering>
151                         </resource>
152                         <resource>
153                                 <directory>../common-widgets/target</directory>
154                                 <includes>
155                                         <include>**/*.zip</include>
156                                 </includes>
157                         </resource>
158                 </resources>
159
160                 <pluginManagement>
161                         <plugins>
162                                 <!-- replicated from OParent -->
163                                 <plugin>
164                                         <groupId>org.apache.maven.plugins</groupId>
165                                         <artifactId>maven-site-plugin</artifactId>
166                                         <version>3.6</version>
167                                         <dependencies>
168                                                 <dependency>
169                                                         <groupId>org.apache.maven.wagon</groupId>
170                                                         <artifactId>wagon-webdav-jackrabbit</artifactId>
171                                                         <version>2.10</version>
172                                                 </dependency>
173                                         </dependencies>
174                                 </plugin>
175                         </plugins>
176                 </pluginManagement>
177
178                 <plugins>
179
180                         <plugin>
181                                 <groupId>org.springframework.boot</groupId>
182                                 <artifactId>spring-boot-maven-plugin</artifactId>
183                         </plugin>
184
185                         <!-- No deployment step for this project -->
186                         <plugin>
187                                 <groupId>org.apache.maven.plugins</groupId>
188                                 <artifactId>maven-deploy-plugin</artifactId>
189                                 <!-- version set by spring <version>2.8</version> -->
190                                 <configuration>
191                                         <skip>true</skip>
192                                 </configuration>
193                         </plugin>
194                         <plugin>
195                                 <groupId>org.jacoco</groupId>
196                                 <artifactId>jacoco-maven-plugin</artifactId>
197                                 <version>${jacocoVersion}</version>
198                                 <executions>
199                                         <!-- disable jacoco executions from oparent -->
200                                         <execution>
201                                                 <id>pre-unit-test</id>
202                                                 <phase>none</phase>
203                                         </execution>
204                                         <execution>
205                                                 <id>post-unit-test</id>
206                                                 <phase>none</phase>
207                                         </execution>
208                                         <execution>
209                                                 <id>pre-integration-test</id>
210                                                 <phase>none</phase>
211                                         </execution>
212                                         <execution>
213                                                 <id>post-integration-test</id>
214                                                 <phase>none</phase>
215                                         </execution>
216                                         <!-- Order matters -->
217                                         <execution>
218                                                 <id>portal-prepare-agent</id>
219                                                 <goals>
220                                                         <goal>prepare-agent</goal>
221                                                 </goals>
222                                                 <configuration>
223                                                         <destFile>${sonar.jacoco.reportPath}</destFile>
224                                                 </configuration>
225                                         </execution>
226                                         <!-- offline instrumentation for PowerMock -->
227                                         <execution>
228                                                 <id>portal-offline-instrument</id>
229                                                 <goals>
230                                                         <goal>instrument</goal>
231                                                 </goals>
232                                         </execution>
233                                         <execution>
234                                                 <id>portal-restore-instrumented-classes</id>
235                                                 <phase>test</phase>
236                                                 <goals>
237                                                         <goal>restore-instrumented-classes</goal>
238                                                 </goals>
239                                         </execution>
240                                         <execution>
241                                                 <id>portal-post-unit-test</id>
242                                                 <phase>test</phase>
243                                                 <goals>
244                                                         <goal>report</goal>
245                                                 </goals>
246                                                 <configuration>
247                                                         <dataFile>${sonar.jacoco.reportPath}</dataFile>
248                                                         <outputDirectory>${project.basedir}/target/site/jacoco</outputDirectory>
249                                                 </configuration>
250                                         </execution>
251                                 </executions>
252                         </plugin>
253
254                         <plugin>
255                                 <groupId>org.apache.maven.plugins</groupId>
256                                 <artifactId>maven-surefire-plugin</artifactId>
257                                 <configuration>
258                                         <systemPropertyVariables>
259                                                 <jacoco-agent.destfile>${project.build.directory}/code-coverage/jacoco-ut.exec</jacoco-agent.destfile>
260                                         </systemPropertyVariables>
261                                 </configuration>
262                         </plugin>
263                 </plugins>
264
265         </build>
266
267         <!-- This POM cannot inherit from OParent -->
268         <distributionManagement>
269                 <site>
270                         <id>ecomp-site</id>
271                         <url>dav:https://nexus.onap.org/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</url>
272                 </site>
273         </distributionManagement>
274
275 </project>