Register with MSB after being launched
[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>1.0.0-SNAPSHOT</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                         </exclusions>
113                 </dependency>
114
115                 <dependency>
116                         <groupId>ch.qos.logback</groupId>
117                         <artifactId>logback-classic</artifactId>
118                         <version>1.2.3</version>
119                 </dependency>
120
121                 <dependency>
122                         <groupId>org.springframework.boot</groupId>
123                         <artifactId>spring-boot-starter-data-jpa</artifactId>
124                 </dependency>
125
126         <dependency>
127             <groupId>org.springframework.boot</groupId>
128             <artifactId>spring-boot-starter-aop</artifactId>
129         </dependency>
130
131                 <dependency>
132                         <groupId>org.apache.commons</groupId>
133                         <artifactId>commons-io</artifactId>
134                         <version>1.3.2</version>
135                 </dependency>
136
137                 <dependency>
138                         <groupId>commons-beanutils</groupId>
139                         <artifactId>commons-beanutils</artifactId>
140                         <version>1.9.3</version>
141                 </dependency>
142
143                 <dependency>
144                         <groupId>javax.validation</groupId>
145                         <artifactId>validation-api</artifactId>
146                         <version>2.0.1.Final</version>
147                 </dependency>
148
149                 <dependency>
150                         <groupId>org.apache.commons</groupId>
151                         <artifactId>commons-lang3</artifactId>
152                         <version>3.4</version>
153                 </dependency>
154
155                 <!-- mongo -->
156
157                 <dependency>
158                         <groupId>org.springframework.boot</groupId>
159                         <artifactId>spring-boot-starter-data-mongodb</artifactId>
160                 </dependency>
161
162                 <!-- mysql -->
163
164                 <dependency>
165                         <groupId>org.mariadb.jdbc</groupId>
166                         <artifactId>mariadb-java-client</artifactId>
167                         <version>1.1.7</version>
168                 </dependency>
169
170                 <!-- swagger -->
171
172                 <dependency>
173                         <groupId>io.swagger</groupId>
174                         <artifactId>swagger-annotations</artifactId>
175                         <version>1.5.18</version>
176                 </dependency>
177
178                 <!-- jackson -->
179
180                 <dependency>
181                         <groupId>com.fasterxml.jackson.dataformat</groupId>
182                         <artifactId>jackson-dataformat-yaml</artifactId>
183                         <version>2.8.11</version>
184                 </dependency>
185
186                 <!-- jolt -->
187
188                 <dependency>
189                         <groupId>com.bazaarvoice.jolt</groupId>
190                         <artifactId>jolt-core</artifactId>
191                         <version>0.1.0</version>
192                         <exclusions>
193                                 <exclusion>
194                                         <groupId>com.fasterxml.jackson.core</groupId>
195                                         <artifactId>jackson-databind</artifactId>
196                                 </exclusion>
197                         </exclusions>
198                 </dependency>
199
200                 <dependency>
201                         <groupId>com.bazaarvoice.jolt</groupId>
202                         <artifactId>json-utils</artifactId>
203                         <version>0.1.0</version>
204                 </dependency>
205
206                 <!-- test -->
207
208                 <dependency>
209                         <groupId>org.springframework.boot</groupId>
210                         <artifactId>spring-boot-starter-test</artifactId>
211                         <scope>test</scope>
212                 </dependency>
213
214                 <!-- test h2 -->
215
216                 <dependency>
217                         <groupId>com.h2database</groupId>
218                         <artifactId>h2</artifactId>
219                         <scope>test</scope>
220                 </dependency>
221
222                 <dependency>
223                         <groupId>de.flapdoodle.embed</groupId>
224                         <artifactId>de.flapdoodle.embed.mongo</artifactId>
225                         <version>${embedded-mongo.version}</version>
226                         <scope>test</scope>
227                 </dependency>
228
229                 <!-- test wiremock -->
230
231                 <dependency>
232                         <groupId>org.springframework.cloud</groupId>
233                         <artifactId>spring-cloud-contract-wiremock</artifactId>
234                         <version>1.0.0.RELEASE</version>
235                         <scope>test</scope>
236                 </dependency>
237
238                 <dependency>
239                         <groupId>org.eclipse.jetty</groupId>
240                         <artifactId>jetty-server</artifactId>
241                         <version>9.4.7.RC0</version>
242                         <scope>test</scope>
243                 </dependency>
244
245                 <dependency>
246                         <groupId>org.eclipse.jetty</groupId>
247                         <artifactId>jetty-servlet</artifactId>
248                         <scope>test</scope>
249                 </dependency>
250
251                 <dependency>
252                         <groupId>org.eclipse.jetty</groupId>
253                         <artifactId>jetty-servlets</artifactId>
254                         <scope>test</scope>
255                 </dependency>
256
257                 <!-- runtime dev -->
258
259                 <dependency>
260                         <groupId>org.springframework.boot</groupId>
261                         <artifactId>spring-boot-devtools</artifactId>
262                         <scope>runtime</scope>
263                 </dependency>
264
265                 <!-- MSB SDK-->
266                 <dependency>
267                         <groupId>org.onap.msb.java-sdk</groupId>
268                         <artifactId>msb-java-sdk</artifactId>
269                         <version>1.1.1</version>
270                 </dependency>
271
272         </dependencies>
273
274         <build>
275                 <plugins>
276                         <plugin>
277                                 <groupId>org.springframework.boot</groupId>
278                                 <artifactId>spring-boot-maven-plugin</artifactId>
279                         </plugin>
280                         <plugin>
281                                 <groupId>org.sonatype.plugins</groupId>
282                                 <artifactId>nexus-staging-maven-plugin</artifactId>
283                                 <version>1.6.7</version>
284                                 <extensions>true</extensions>
285                                 <configuration>
286                                         <nexusUrl>${nexusproxy}</nexusUrl>
287                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
288                                         <serverId>ecomp-staging</serverId>
289                                 </configuration>
290                         </plugin>
291                         <plugin>
292                                 <groupId>org.apache.maven.plugins</groupId>
293                                 <artifactId>maven-site-plugin</artifactId>
294                                 <version>3.6</version>
295                                 <dependencies>
296                                         <dependency>
297                                                 <groupId>org.apache.maven.wagon</groupId>
298                                                 <artifactId>wagon-webdav-jackrabbit</artifactId>
299                                                 <version>2.10</version>
300                                         </dependency>
301                                 </dependencies>
302                         </plugin>
303                         <plugin>
304                                 <groupId>com.mycila</groupId>
305                                 <artifactId>license-maven-plugin</artifactId>
306                                 <version>3.0</version>
307                                 <configuration>
308                                         <header>LICENSE.TXT</header>
309                                         <includes>
310                                                 <include>restclient/**</include>
311                                                 <include>src/**</include>
312                                                 <include>./**/*.xml</include>
313                                                 <include>./**/*.xml</include>
314                                                 <include>./**/*.yml</include>
315                                                 <include>./**/*.yaml</include>
316                                         </includes>
317                                         <skipExistingHeaders>true</skipExistingHeaders>
318                                         <skip>false</skip>
319                                         <mapping>
320                                                 <http>SCRIPT_STYLE</http>
321                                         </mapping>
322                                 </configuration>
323                                 <executions>
324                                         <execution>
325                                                 <goals>
326                                                         <!-- Set goal to "format" to auto update license headers -->
327                                                         <goal>check</goal>
328                                                 </goals>
329                                                 <phase>process-sources</phase>
330                                         </execution>
331                                 </executions>
332                         </plugin>
333                         <plugin>
334                                 <groupId>org.codehaus.mojo</groupId>
335                                 <artifactId>sonar-maven-plugin</artifactId>
336                                 <version>3.2</version>
337                         </plugin>
338                         <plugin>
339                              <groupId>org.jacoco</groupId>
340                              <artifactId>jacoco-maven-plugin</artifactId>
341                              <version>0.8.1</version>
342                              <configuration>
343                                   <dumpOnExit>true</dumpOnExit>
344                                   <includes>
345                                         <include>org.onap.nbi.*</include>
346                                   </includes>
347                                   <excludes>
348                                         <exclude>**/model/**/*</exclude>
349                                   </excludes>        
350                              </configuration>
351                              <executions>
352                                   <execution>
353                                         <id>pre-unit-test</id>
354                                         <goals>
355                                              <goal>prepare-agent</goal>
356                                         </goals>
357                                         <configuration>
358                                              <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
359                                              <!-- <append>true</append> -->
360                                         </configuration>
361                                   </execution>
362                                   <execution>
363                                         <id>pre-integration-test</id>
364                                         <phase>pre-integration-test</phase>
365                                         <goals>
366                                              <goal>prepare-agent</goal>
367                                         </goals>
368                                         <configuration>
369                                              <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
370                                              <!-- <append>true</append> -->
371                                         </configuration>
372                                   </execution>
373                                   <execution>
374                                         <goals>
375                                              <goal>merge</goal>
376                                         </goals>
377                                         <phase>post-integration-test</phase>
378                                         <configuration>
379                                              <fileSets>
380                                                    <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
381                                                        <directory>${project.build.directory}/coverage-reports</directory>
382                                                        <includes>
383                                                              <include>*.exec</include>
384                                                        </includes>
385                                                   </fileSet>
386                                              </fileSets>
387                                              <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
388                                         </configuration>
389                                    </execution>
390                              </executions>
391                         </plugin>
392                         <plugin>
393                                 <artifactId>maven-source-plugin</artifactId>
394                                 <executions>
395                                         <execution>
396                                                 <id>attach-sources</id>
397                                                 <phase>deploy</phase>
398                                                 <goals>
399                                                         <goal>jar-no-fork</goal>
400                                                 </goals>
401                                         </execution>
402                                 </executions>
403                         </plugin>
404                 </plugins>
405         </build>
406
407
408
409         <profiles>
410                 <profile>
411                         <id>docker</id>
412                         <build>
413                                 <plugins>
414                                         <plugin>
415                                                 <groupId>io.fabric8</groupId>
416                                                 <artifactId>docker-maven-plugin</artifactId>
417                                                 <version>0.25.0</version>
418                                                 <configuration>
419                                                         <verbose>true</verbose>
420                                                         <apiVersion>1.23</apiVersion>
421                                                         <pullRegistry>${docker.pull.registry}</pullRegistry>
422                                                         <pushRegistry>${docker.push.registry}</pushRegistry>
423                                                         <images>
424                                                                 <image>
425                                                                         <name>onap/externalapi/nbi</name>
426                                                                         <alias>onap/externalapi/nbi</alias>
427                                                                         <build>
428                                                                                 <cleanup>true</cleanup>
429                                                                                 <tags>
430                                                                                         <tag>${docker.tag}</tag>
431                                                                                         <tag>${docker.latest.tag}</tag>
432                                                                                 </tags>
433                                                                                 <dockerFileDir>${project.basedir}</dockerFileDir>
434                                                                                 <args>
435                                                                                         <PKG_FILENAME>${project.build.finalName}.${project.packaging}</PKG_FILENAME>
436                                                                                 </args>
437                                                                         </build>
438                                                                 </image>
439                                                         </images>
440                                                 </configuration>
441                                                 <executions>
442                                                         <execution>
443                                                                 <id>clean-images</id>
444                                                                 <phase>pre-clean</phase>
445                                                                 <goals>
446                                                                         <goal>remove</goal>
447                                                                 </goals>
448                                                                 <configuration>
449                                                                         <removeMode>all</removeMode>
450                                                                 </configuration>
451                                                         </execution>
452                                                         <execution>
453                                                                 <id>generate-images</id>
454                                                                 <phase>package</phase>
455                                                                 <goals>
456                                                                         <goal>build</goal>
457                                                                 </goals>
458                                                         </execution>
459                                                         <execution>
460                                                                 <id>push-images</id>
461                                                                 <phase>deploy</phase>
462                                                                 <goals>
463                                                                         <goal>push</goal>
464                                                                 </goals>
465                                                         </execution>
466                                                 </executions>
467                                         </plugin>
468                                 </plugins>
469                         </build>
470                 </profile>
471         </profiles>
472
473 </project>