Fixed health check issue
[portal.git] / 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.oparent</groupId>
8                 <artifactId>oparent</artifactId>
9                 <version>1.2.0</version>
10                 <relativePath />
11         </parent>
12
13         <groupId>org.onap.portal</groupId>
14         <artifactId>onap-portal-parent</artifactId>
15         <version>2.3.0</version>
16         <packaging>pom</packaging>
17         <name>portal</name>
18
19         <modules>
20                 <!-- This parent POM names only ONAP projects -->
21                 <module>ecomp-portal-BE-common</module>
22                 <module>ecomp-portal-BE-os</module>
23                 <module>ecomp-portal-FE-os</module>
24                 <module>ecomp-portal-widget-ms</module>
25         </modules>
26
27         <properties>
28                 <!-- Jenkins should invoke mvn with argument -Dbuild.number=${BUILD_NUMBER} -->
29                 <build.number>0</build.number>
30                 <epsdk.version>2.3.1</epsdk.version>
31                 <springframework.version>4.2.3.RELEASE</springframework.version>
32                 <hibernate.version>4.3.11.Final</hibernate.version>
33                 <fasterxml.version>2.8.10</fasterxml.version>
34                 <eelf.version>1.0.0</eelf.version>
35                 <!-- NOT provided by OParent, unfortunately -->
36                 <jacocoVersion>0.7.6.201602180812</jacocoVersion>
37                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
38                 <encoding>UTF-8</encoding>
39                 <sonar.exclusions>**/scripts/**/*,**.js</sonar.exclusions>
40                 <sonar.test.exclusions>**/test/**/*,**/tests/**/*</sonar.test.exclusions>
41                 <enforcer.skip>false</enforcer.skip>
42         </properties>
43
44         <!-- Specify the repositories here to avoid coordination of ~/.m2/settings.xml 
45                 files among developers. Use values (not properties) so oparent can be resolved. -->
46         <repositories>
47                 <repository>
48                         <id>onap-releases</id>
49                         <name>ONAP - Release Repository</name>
50                         <url>https://nexus.onap.org/content/repositories/releases</url>
51                 </repository>
52                 <repository>
53                         <id>onap-staging</id>
54                         <name>ONAP - Staging Repository</name>
55                         <url>https://nexus.onap.org/content/repositories/staging</url>
56                 </repository>
57                 <repository>
58                         <id>onap-snapshots</id>
59                         <name>ONAP - Snapshot Repository</name>
60                         <url>https://nexus.onap.org/content/repositories/snapshots</url>
61                 </repository>
62                 <repository>
63                         <id>onap-public</id>
64                         <url>https://nexus.onap.org/content/groups/public</url>
65                 </repository>
66         </repositories>
67
68         <!-- Specify the repositories here to avoid coordination of ~/.m2/settings.xml 
69                 files among all developers. -->
70         <pluginRepositories>
71                 <pluginRepository>
72                         <id>onap-plugin-release</id>
73                         <url>https://nexus.onap.org/content/repositories/releases/</url>
74                 </pluginRepository>
75                 <pluginRepository>
76                         <id>onap-plugin-staging</id>
77                         <url>https://nexus.onap.org/content/repositories/staging/</url>
78                 </pluginRepository>
79                 <pluginRepository>
80                         <id>onap-plugin-snapshots</id>
81                         <url>https://nexus.onap.org/content/repositories/snapshots/</url>
82                 </pluginRepository>
83         </pluginRepositories>
84
85         <profiles>
86                 <!-- disable doclint, a new feature in Java 8, when generating javadoc -->
87                 <profile>
88                         <id>doclint-java8-disable</id>
89                         <activation>
90                                 <jdk>[1.8,)</jdk>
91                         </activation>
92                         <build>
93                                 <plugins>
94                                         <plugin>
95                                                 <groupId>org.apache.maven.plugins</groupId>
96                                                 <artifactId>maven-javadoc-plugin</artifactId>
97                                                 <version>3.0.0-M1</version>
98                                                 <configuration>
99                                                         <additionalparam>-Xdoclint:none</additionalparam>
100                                                 </configuration>
101                                         </plugin>
102                                 </plugins>
103                         </build>
104                 </profile>
105         </profiles>
106
107         <build>
108                 <pluginManagement>
109                         <plugins>
110                                 <!-- Silence Eclipse m2e warnings -->
111                                 <plugin>
112                                         <groupId>org.eclipse.m2e</groupId>
113                                         <artifactId>lifecycle-mapping</artifactId>
114                                         <version>1.0.0</version>
115                                         <configuration>
116                                                 <lifecycleMappingMetadata>
117                                                         <pluginExecutions>
118                                                                 <pluginExecution>
119                                                                         <pluginExecutionFilter>
120                                                                                 <groupId>org.apache.maven.plugins</groupId>
121                                                                                 <artifactId>maven-checkstyle-plugin</artifactId>
122                                                                                 <versionRange>2.17,)</versionRange>
123                                                                                 <goals>
124                                                                                         <goal>check</goal>
125                                                                                 </goals>
126                                                                         </pluginExecutionFilter>
127                                                                         <action>
128                                                                                 <ignore />
129                                                                         </action>
130                                                                 </pluginExecution>
131                                                         </pluginExecutions>
132                                                 </lifecycleMappingMetadata>
133                                         </configuration>
134                                 </plugin>
135                                 <plugin>
136                                         <artifactId>maven-compiler-plugin</artifactId>
137                                         <version>3.1</version>
138                                         <configuration>
139                                                 <source>1.8</source>
140                                                 <target>1.8</target>
141                                         </configuration>
142                                 </plugin>
143                                 <!-- maven-site-plugin config is provided by OParent -->
144                                 <plugin>
145                                         <groupId>org.apache.maven.plugins</groupId>
146                                         <artifactId>maven-site-plugin</artifactId>
147                                         <version>3.6</version>
148                                         <dependencies>
149                                                 <dependency>
150                                                         <groupId>org.apache.maven.wagon</groupId>
151                                                         <artifactId>wagon-webdav-jackrabbit</artifactId>
152                                                         <version>2.10</version>
153                                                 </dependency>
154                                         </dependencies>
155                                 </plugin>
156                         </plugins>
157                 </pluginManagement>
158                 <plugins>
159                         <!-- Jacoco -->
160                         <plugin>
161                                 <groupId>org.jacoco</groupId>
162                                 <artifactId>jacoco-maven-plugin</artifactId>
163                                 <!-- Override OParent version -->
164                                 <version>${jacocoVersion}</version>
165                                 <executions>
166                                         <!-- disable jacoco executions from oparent -->
167                                         <execution>
168                                                 <id>pre-unit-test</id>
169                                                 <phase>none</phase>
170                                         </execution>
171                                         <execution>
172                                                 <id>post-unit-test</id>
173                                                 <phase>none</phase>
174                                         </execution>
175                                         <execution>
176                                                 <id>pre-integration-test</id>
177                                                 <phase>none</phase>
178                                         </execution>
179                                         <execution>
180                                                 <id>post-integration-test</id>
181                                                 <phase>none</phase>
182                                         </execution>
183                                         <!-- Order matters -->
184                                         <execution>
185                                                 <id>portal-prepare-agent</id>
186                                                 <goals>
187                                                         <goal>prepare-agent</goal>
188                                                 </goals>
189                                                 <configuration>
190                                                         <destFile>${sonar.jacoco.reportPath}</destFile>
191                                                 </configuration>
192                                         </execution>
193                                         <!-- offline instrumentation for PowerMock -->
194                                         <execution>
195                                                 <id>portal-offline-instrument</id>
196                                                 <goals>
197                                                         <goal>instrument</goal>
198                                                 </goals>
199                                         </execution>
200                                         <execution>
201                                                 <id>portal-restore-instrumented-classes</id>
202                                                 <phase>test</phase>
203                                                 <goals>
204                                                         <goal>restore-instrumented-classes</goal>
205                                                 </goals>
206                                         </execution>
207                                         <execution>
208                                                 <id>portal-post-unit-test</id>
209                                                 <phase>test</phase>
210                                                 <goals>
211                                                         <goal>report</goal>
212                                                 </goals>
213                                                 <configuration>
214                                                         <dataFile>${sonar.jacoco.reportPath}</dataFile>
215                                                         <outputDirectory>${project.basedir}/target/site/jacoco</outputDirectory>
216                                                 </configuration>
217                                         </execution>
218                                 </executions>
219                         </plugin>
220
221                         <plugin>
222                                 <groupId>org.apache.maven.plugins</groupId>
223                                 <artifactId>maven-surefire-plugin</artifactId>
224                                 <configuration>
225                                         <systemPropertyVariables>
226                                                 <jacoco-agent.destfile>${project.build.directory}/code-coverage/jacoco-ut.exec</jacoco-agent.destfile>
227                                         </systemPropertyVariables>
228                                 </configuration>
229                         </plugin>
230                         <!-- No deployment step for this project -->
231                         <plugin>
232                                 <groupId>org.apache.maven.plugins</groupId>
233                                 <artifactId>maven-deploy-plugin</artifactId>
234                                 <!-- version managed by oparent <version>2.8</version> -->
235                                 <configuration>
236                                         <skip>true</skip>
237                                 </configuration>
238                         </plugin>
239                         <plugin>
240                                 <groupId>org.codehaus.mojo</groupId>
241                                 <artifactId>sonar-maven-plugin</artifactId>
242                                 <version>3.0.2</version>
243                         </plugin>
244                 </plugins>
245         </build>
246
247         <distributionManagement>
248                 <!-- oparent.version defines snapshot and release repositories -->
249                 <site>
250                         <id>ecomp-site</id>
251                         <url>dav:https://nexus.onap.org/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</url>
252                 </site>
253         </distributionManagement>
254 </project>