Varibles Name Changed
[externalapi/nbi.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3
4         Copyright (c) 2018 Orange
5
6         Licensed under the Apache License, Version 2.0 (the "License");
7         you may not use this file except in compliance with the License.
8         You may obtain a copy of the License at
9
10             http://www.apache.org/licenses/LICENSE-2.0
11
12         Unless required by applicable law or agreed to in writing, software
13         distributed under the License is distributed on an "AS IS" BASIS,
14         WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15         See the License for the specific language governing permissions and
16         limitations under the License.
17
18 -->
19 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20                  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21         <modelVersion>4.0.0</modelVersion>
22
23         <groupId>org.onap.externalapi-nbi</groupId>
24         <artifactId>nbi-rest-services</artifactId>
25         <version>3.0.1</version>
26         <packaging>jar</packaging>
27
28         <name>externalapi-nbi</name>
29
30         <parent>
31                 <groupId>org.springframework.boot</groupId>
32                 <artifactId>spring-boot-starter-parent</artifactId>
33                 <version>1.5.12.RELEASE</version>
34                 <relativePath /> <!-- lookup parent from repository -->
35         </parent>
36
37         <properties>
38                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
39                 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
40                 <nexusproxy>https://nexus.onap.org</nexusproxy>
41                 <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath>
42                 <releaseNexusPath>content/repositories/releases/</releaseNexusPath>
43                 <stagingNexusPath>content/repositories/staging/</stagingNexusPath>
44                 <java.version>1.8</java.version>
45                 <docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry>
46                 <docker.push.registry>nexus3.onap.org:10003</docker.push.registry>
47                 <timestamp>${maven.build.timestamp}</timestamp>
48                 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
49                 <!--docker -->
50                 <docker.tag>${project.version}-${timestamp}</docker.tag>
51                 <docker.latest.tag>${project.version}-latest</docker.latest.tag>
52                 <!--sonar -->
53              <sonar.language>java</sonar.language>
54              <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
55              <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
56              <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
57              <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
58              <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
59              <sonar.projectVersion>${project.version}</sonar.projectVersion>
60                 <sonar.coverage.exclusions>**/model/**/*</sonar.coverage.exclusions>
61         </properties>
62
63         <repositories>
64                 <repository>
65                         <id>maven2-repository.java.net</id>
66                         <name>Java.net Repository for Maven</name>
67                         <url>http://download.java.net/maven/2/</url>
68                         <layout>default</layout>
69                 </repository>
70                 <repository>
71                         <id>ecomp-snapshots</id>
72                         <name>Snapshot Repository</name>
73                         <url>https://nexus.onap.org/content/repositories/releases/</url>
74                 </repository>
75                 <repository>
76                         <id>ecomp-staging</id>
77                         <name>Staging Repository</name>
78                         <url>https://nexus.onap.org/content/repositories/staging/</url>
79                 </repository>
80         </repositories>
81
82         <distributionManagement>
83                 <repository>
84                         <id>ecomp-releases</id>
85                         <name>Release Repository</name>
86                         <url>${nexusproxy}/${releaseNexusPath}</url>
87                 </repository>
88                 <snapshotRepository>
89                         <id>ecomp-snapshots</id>
90                         <name>Snapshot Repository</name>
91                         <url>${nexusproxy}/${snapshotNexusPath}</url>
92                 </snapshotRepository>
93         </distributionManagement>
94
95         <licenses>
96                 <license>
97                         <name>Apache2</name>
98                         <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
99                 </license>
100         </licenses>
101
102         <dependencies>
103
104                 <dependency>
105                         <groupId>org.springframework.boot</groupId>
106                         <artifactId>spring-boot-starter-web</artifactId>
107                         <exclusions>
108                                 <exclusion>
109                                         <groupId>ch.qos.logback</groupId>
110                                         <artifactId>logback-classic</artifactId>
111                                 </exclusion>
112                                 <exclusion>
113                                         <groupId>org.apache.tomcat.embed</groupId>
114                                         <artifactId>tomcat-embed-core</artifactId>
115                                 </exclusion>
116                                 <exclusion>
117                                         <groupId>com.fasterxml.jackson.core</groupId>
118                                         <artifactId>jackson-databind</artifactId>
119                                 </exclusion>
120                         </exclusions>
121                 </dependency>
122
123                 <dependency>
124                         <groupId>com.fasterxml.jackson.core</groupId>
125                         <artifactId>jackson-databind</artifactId>
126                         <version>2.8.11.2</version>
127                 </dependency>
128
129                 <dependency>
130                         <groupId>org.apache.tomcat.embed</groupId>
131                         <artifactId>tomcat-embed-core</artifactId>
132                         <version>8.5.32</version>
133                 </dependency>
134
135                 <dependency>
136                         <groupId>ch.qos.logback</groupId>
137                         <artifactId>logback-classic</artifactId>
138                         <version>1.2.3</version>
139                 </dependency>
140
141                 <dependency>
142                         <groupId>org.springframework.boot</groupId>
143                         <artifactId>spring-boot-starter-data-jpa</artifactId>
144       <exclusions>
145         <exclusion>
146                                         <groupId>org.springframework.data</groupId>
147                                         <artifactId>spring-data-commons</artifactId>
148         </exclusion>
149       </exclusions>
150                 </dependency>
151
152                 <dependency>
153                         <groupId>org.springframework.data</groupId>
154                         <artifactId>spring-data-commons</artifactId>
155                         <version>1.13.14.RELEASE</version>
156                 </dependency>
157
158                 <dependency>
159                                 <groupId>org.springframework.boot</groupId>
160                                 <artifactId>spring-boot-starter-aop</artifactId>
161                 </dependency>
162
163                 <dependency>
164                         <groupId>org.apache.commons</groupId>
165                         <artifactId>commons-io</artifactId>
166                         <version>1.3.2</version>
167                 </dependency>
168
169                 <dependency>
170                         <groupId>commons-beanutils</groupId>
171                         <artifactId>commons-beanutils</artifactId>
172                         <version>1.9.3</version>
173                 </dependency>
174
175                 <dependency>
176                         <groupId>javax.validation</groupId>
177                         <artifactId>validation-api</artifactId>
178                         <version>2.0.1.Final</version>
179                 </dependency>
180
181                 <dependency>
182                         <groupId>org.apache.commons</groupId>
183                         <artifactId>commons-lang3</artifactId>
184                         <version>3.4</version>
185                 </dependency>
186
187                 <!-- mongo -->
188
189                 <dependency>
190                         <groupId>org.springframework.boot</groupId>
191                         <artifactId>spring-boot-starter-data-mongodb</artifactId>
192                 </dependency>
193
194                 <!-- mysql -->
195
196                 <dependency>
197                         <groupId>org.mariadb.jdbc</groupId>
198                         <artifactId>mariadb-java-client</artifactId>
199                         <version>1.1.7</version>
200                 </dependency>
201
202                 <!-- swagger -->
203
204                 <dependency>
205                         <groupId>io.swagger</groupId>
206                         <artifactId>swagger-annotations</artifactId>
207                         <version>1.5.18</version>
208                 </dependency>
209
210                 <!-- jackson -->
211
212                 <dependency>
213                         <groupId>com.fasterxml.jackson.dataformat</groupId>
214                         <artifactId>jackson-dataformat-yaml</artifactId>
215                         <version>2.9.6</version>
216                 </dependency>
217
218                 <!-- jolt -->
219
220                 <dependency>
221                         <groupId>com.bazaarvoice.jolt</groupId>
222                         <artifactId>jolt-core</artifactId>
223                         <version>0.1.0</version>
224                         <exclusions>
225                                 <exclusion>
226                                         <groupId>com.fasterxml.jackson.core</groupId>
227                                         <artifactId>jackson-databind</artifactId>
228                                 </exclusion>
229                         </exclusions>
230                 </dependency>
231
232                 <dependency>
233                         <groupId>com.bazaarvoice.jolt</groupId>
234                         <artifactId>json-utils</artifactId>
235                         <version>0.1.0</version>
236                         <exclusions>
237                                 <exclusion>
238                                         <groupId>com.fasterxml.jackson.core</groupId>
239                                         <artifactId>jackson-databind</artifactId>
240                                 </exclusion>
241                         </exclusions>
242                 </dependency>
243
244                 <!-- test -->
245
246                 <dependency>
247                         <groupId>org.springframework.boot</groupId>
248                         <artifactId>spring-boot-starter-test</artifactId>
249                         <scope>test</scope>
250                 </dependency>
251
252                 <!-- test h2 -->
253
254                 <dependency>
255                         <groupId>com.h2database</groupId>
256                         <artifactId>h2</artifactId>
257                         <scope>test</scope>
258                 </dependency>
259
260                 <dependency>
261                         <groupId>de.flapdoodle.embed</groupId>
262                         <artifactId>de.flapdoodle.embed.mongo</artifactId>
263                         <version>${embedded-mongo.version}</version>
264                         <scope>test</scope>
265                 </dependency>
266
267                 <!-- test wiremock -->
268
269                 <dependency>
270                         <groupId>org.springframework.cloud</groupId>
271                         <artifactId>spring-cloud-contract-wiremock</artifactId>
272                         <version>1.0.0.RELEASE</version>
273                         <scope>test</scope>
274                         <exclusions>
275                                 <exclusion>
276                                         <groupId>com.fasterxml.jackson.core</groupId>
277                                         <artifactId>jackson-databind</artifactId>
278                                 </exclusion>
279                         </exclusions>
280                 </dependency>
281
282                 <dependency>
283                         <groupId>org.eclipse.jetty</groupId>
284                         <artifactId>jetty-server</artifactId>
285                         <version>9.4.7.RC0</version>
286                         <scope>test</scope>
287                 </dependency>
288
289                 <dependency>
290                         <groupId>org.eclipse.jetty</groupId>
291                         <artifactId>jetty-servlet</artifactId>
292                         <scope>test</scope>
293                 </dependency>
294
295                 <dependency>
296                         <groupId>org.eclipse.jetty</groupId>
297                         <artifactId>jetty-servlets</artifactId>
298                         <scope>test</scope>
299                 </dependency>
300
301                 <!-- runtime dev -->
302
303                 <dependency>
304                         <groupId>org.springframework.boot</groupId>
305                         <artifactId>spring-boot-devtools</artifactId>
306                         <scope>runtime</scope>
307                 </dependency>
308
309                 <!-- MSB SDK-->
310                 <dependency>
311                         <groupId>org.onap.msb.java-sdk</groupId>
312                         <artifactId>msb-java-sdk</artifactId>
313                         <version>1.1.1</version>
314                         <exclusions>
315                                 <exclusion>
316                                         <groupId>com.fasterxml.jackson.core</groupId>
317                                         <artifactId>jackson-databind</artifactId>
318                                 </exclusion>
319                         </exclusions>
320                 </dependency>
321
322         </dependencies>
323
324         <build>
325                 <plugins>
326                         <plugin>
327                                 <groupId>org.springframework.boot</groupId>
328                                 <artifactId>spring-boot-maven-plugin</artifactId>
329                         </plugin>
330                         <plugin>
331                                 <groupId>org.sonatype.plugins</groupId>
332                                 <artifactId>nexus-staging-maven-plugin</artifactId>
333                                 <version>1.6.7</version>
334                                 <extensions>true</extensions>
335                                 <configuration>
336                                         <nexusUrl>${nexusproxy}</nexusUrl>
337                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
338                                         <serverId>ecomp-staging</serverId>
339                                 </configuration>
340                         </plugin>
341                         <plugin>
342                                 <groupId>org.apache.maven.plugins</groupId>
343                                 <artifactId>maven-site-plugin</artifactId>
344                                 <version>3.6</version>
345                                 <dependencies>
346                                         <dependency>
347                                                 <groupId>org.apache.maven.wagon</groupId>
348                                                 <artifactId>wagon-webdav-jackrabbit</artifactId>
349                                                 <version>2.10</version>
350                                         </dependency>
351                                 </dependencies>
352                         </plugin>
353                         <plugin>
354                                 <groupId>com.mycila</groupId>
355                                 <artifactId>license-maven-plugin</artifactId>
356                                 <version>3.0</version>
357                                 <configuration>
358                                         <header>LICENSE.TXT</header>
359                                         <includes>
360                                                 <include>restclient/**</include>
361                                                 <include>src/**</include>
362                                                 <include>./**/*.xml</include>
363                                                 <include>./**/*.xml</include>
364                                                 <include>./**/*.yml</include>
365                                                 <include>./**/*.yaml</include>
366                                         </includes>
367                                         <skipExistingHeaders>true</skipExistingHeaders>
368                                         <skip>false</skip>
369                                         <mapping>
370                                                 <http>SCRIPT_STYLE</http>
371                                         </mapping>
372                                 </configuration>
373                                 <executions>
374                                         <execution>
375                                                 <goals>
376                                                         <!-- Set goal to "format" to auto update license headers -->
377                                                         <goal>check</goal>
378                                                 </goals>
379                                                 <phase>process-sources</phase>
380                                         </execution>
381                                 </executions>
382                         </plugin>
383                         <plugin>
384                                 <groupId>org.codehaus.mojo</groupId>
385                                 <artifactId>sonar-maven-plugin</artifactId>
386                                 <version>3.2</version>
387                         </plugin>
388                         <plugin>
389                              <groupId>org.jacoco</groupId>
390                              <artifactId>jacoco-maven-plugin</artifactId>
391                              <version>0.8.1</version>
392                              <configuration>
393                                   <dumpOnExit>true</dumpOnExit>
394                                   <includes>
395                                         <include>org.onap.nbi.*</include>
396                                   </includes>
397                                   <excludes>
398                                         <exclude>**/model/**/*</exclude>
399                                   </excludes>        
400                              </configuration>
401                              <executions>
402                                   <execution>
403                                         <id>pre-unit-test</id>
404                                         <goals>
405                                              <goal>prepare-agent</goal>
406                                         </goals>
407                                         <configuration>
408                                              <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
409                                              <!-- <append>true</append> -->
410                                         </configuration>
411                                   </execution>
412                                   <execution>
413                                         <id>pre-integration-test</id>
414                                         <phase>pre-integration-test</phase>
415                                         <goals>
416                                              <goal>prepare-agent</goal>
417                                         </goals>
418                                         <configuration>
419                                              <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
420                                              <!-- <append>true</append> -->
421                                         </configuration>
422                                   </execution>
423                                   <execution>
424                                         <goals>
425                                              <goal>merge</goal>
426                                         </goals>
427                                         <phase>post-integration-test</phase>
428                                         <configuration>
429                                              <fileSets>
430                                                    <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
431                                                        <directory>${project.build.directory}/coverage-reports</directory>
432                                                        <includes>
433                                                              <include>*.exec</include>
434                                                        </includes>
435                                                   </fileSet>
436                                              </fileSets>
437                                              <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
438                                         </configuration>
439                                    </execution>
440                              </executions>
441                         </plugin>
442                         <plugin>
443                                 <artifactId>maven-source-plugin</artifactId>
444                                 <executions>
445                                         <execution>
446                                                 <id>attach-sources</id>
447                                                 <phase>deploy</phase>
448                                                 <goals>
449                                                         <goal>jar-no-fork</goal>
450                                                 </goals>
451                                         </execution>
452                                 </executions>
453                         </plugin>
454                 </plugins>
455         </build>
456
457
458
459         <profiles>
460                 <profile>
461                         <id>docker</id>
462                         <build>
463                                 <plugins>
464                                         <plugin>
465                                                 <groupId>io.fabric8</groupId>
466                                                 <artifactId>docker-maven-plugin</artifactId>
467                                                 <version>0.26.1</version>
468                                                 <configuration>
469                                                         <verbose>true</verbose>
470                                                         <apiVersion>1.23</apiVersion>
471                                                         <pullRegistry>${docker.pull.registry}</pullRegistry>
472                                                         <pushRegistry>${docker.push.registry}</pushRegistry>
473                                                         <images>
474                                                                 <image>
475                                                                         <name>onap/externalapi/nbi:${docker.tag}</name>
476                                                                         <build>
477                                                                                 <cleanup>true</cleanup>
478                                                                                 <tags>
479                                                                                         <tag>latest</tag>
480                                                                                         <tag>${docker.latest.tag}</tag>
481                                                                                 </tags>
482                                                                                 <dockerFileDir>${project.basedir}</dockerFileDir>
483                                                                                 <args>
484                                                                                         <PKG_FILENAME>${project.build.finalName}.${project.packaging}</PKG_FILENAME>
485                                                                                 </args>
486                                                                         </build>
487                                                                 </image>
488                                                         </images>
489                                                 </configuration>
490                                                 <executions>
491                                                         <execution>
492                                                                 <id>clean-images</id>
493                                                                 <phase>pre-clean</phase>
494                                                                 <goals>
495                                                                         <goal>remove</goal>
496                                                                 </goals>
497                                                                 <configuration>
498                                                                         <removeMode>all</removeMode>
499                                                                 </configuration>
500                                                         </execution>
501                                                         <execution>
502                                                                 <id>generate-images</id>
503                                                                 <phase>package</phase>
504                                                                 <goals>
505                                                                         <goal>build</goal>
506                                                                 </goals>
507                                                         </execution>
508                                                         <execution>
509                                                                 <id>push-images</id>
510                                                                 <phase>deploy</phase>
511                                                                 <goals>
512                                                                         <goal>push</goal>
513                                                                 </goals>
514                                                         </execution>
515                                                 </executions>
516                                         </plugin>
517                                 </plugins>
518                         </build>
519                 </profile>
520         </profiles>
521
522 </project>