blob: 2c5290cf2fac15e57a681ea0aa398ffd7205239a [file] [log] [blame]
ChrisC5e9feb22017-06-21 02:38:57 -07001<?xml version="1.0" encoding="UTF-8"?>
Determe, Sebastien (sd378r)e35744d2017-08-29 04:21:41 -07002<!--
3 ============LICENSE_START=======================================================
4 ONAP CLAMP
5 ================================================================================
6 Copyright (C) 2017 AT&T Intellectual Property. All rights
7 reserved.
8 ================================================================================
9 Licensed under the Apache License, Version 2.0 (the "License");
10 you may not use this file except in compliance with the License.
11 You may obtain a copy of the License at
ChrisC6c9759e2017-08-30 01:13:58 -070012
Determe, Sebastien (sd378r)e35744d2017-08-29 04:21:41 -070013 http://www.apache.org/licenses/LICENSE-2.0
ChrisC6c9759e2017-08-30 01:13:58 -070014
Determe, Sebastien (sd378r)e35744d2017-08-29 04:21:41 -070015 Unless required by applicable law or agreed to in writing, software
16 distributed under the License is distributed on an "AS IS" BASIS,
17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 See the License for the specific language governing permissions and
19 limitations under the License.
20 ============LICENSE_END============================================
21 ===================================================================
22 ECOMP is a trademark and service mark of AT&T Intellectual Property.
23-->
24
ChrisC5e9feb22017-06-21 02:38:57 -070025<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
27 <modelVersion>4.0.0</modelVersion>
28 <groupId>org.onap.clamp</groupId>
29 <artifactId>clds</artifactId>
Determe, Sebastien (sd378r)e751aed2017-08-31 18:02:22 +020030 <version>1.1.0</version>
ChrisC5e9feb22017-06-21 02:38:57 -070031 <name>ONAP CLAMP</name>
32
Determe, Sebastien (sd378r)e751aed2017-08-31 18:02:22 +020033 <parent>
34 <groupId>org.onap.oparent</groupId>
35 <artifactId>oparent</artifactId>
36 <version>1.0.0-SNAPSHOT</version>
37 </parent>
Determe, Sebastien (sd378r)a66fe452017-08-08 06:42:49 -070038
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -070039 <description>
40 This project build the ONAP CLAMP JAR that contains AJSC + CLAMP code.
41
42 By Default "mvn clean install" command will execute also the unit tests
43 and the integration tests. The integration tests require a docker engine running.
44
45 If you want to skip the intergation test you can by doing:
46 "mvn clean install -DskipITs=true"
47
48 For Spring it's possible to specify the application.properties location
49 "mvn clean install -Dspring.config.location=classpath:application-test.properties"
50
51 The application.properties contains the location of the CLAMP parameters files:
Determe, Sebastien (sd378r)50b6d182017-08-08 05:51:05 -070052 - org.onap.clamp.config.files.cldsReference=classpath:/clds/clds-reference.properties
53 - org.onap.clamp.config.files.cldsPolicyConfig=classpath:/clds/clds-policy-config.properties
54 - org.onap.clamp.config.files.cldsUsers=classpath:/clds/clds-users.json
55 - org.onap.clamp.config.files.globalClds=classpath:/clds/globalClds.properties
ChrisC6c9759e2017-08-30 01:13:58 -070056
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -070057 </description>
58
ChrisC5e9feb22017-06-21 02:38:57 -070059 <properties>
Determe, Sebastien (sd378r)b1cc5ba2017-08-31 17:23:57 +020060 <maven.build.timestamp.format>yyyy.MM.dd'T'hh.mm.ss'Z'</maven.build.timestamp.format>
61 <clamp.project.version>${project.version}</clamp.project.version>
62 <clamp.build.timestamp>${maven.build.timestamp}</clamp.build.timestamp>
ChrisC5e9feb22017-06-21 02:38:57 -070063 <maven.compiler.source>1.8</maven.compiler.source>
64 <maven.compiler.target>1.8</maven.compiler.target>
65 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -070066 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
67
68 <docker.mariadb.port.host>3306</docker.mariadb.port.host>
ChrisC5e9feb22017-06-21 02:38:57 -070069 <sdk.java.common.logging>0.0.3-oss</sdk.java.common.logging>
70 <project.scm.id>git-server</project.scm.id>
ChrisC5e9feb22017-06-21 02:38:57 -070071 <java.version>1.8</java.version>
ChrisC5e9feb22017-06-21 02:38:57 -070072 <csi.logging>6.1.0.6-oss</csi.logging>
73 <sdk.camel.rest>6.2.0.6-oss</sdk.camel.rest>
74 <sdk.camunda.core>6.1.0.3-oss</sdk.camunda.core>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -070075
ChrisC5e9feb22017-06-21 02:38:57 -070076 <sonar.language>java</sonar.language>
77 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
78 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
79 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
80 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
81 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
82 <sonar.projectVersion>${project.version}</sonar.projectVersion>
83
JulienBe027c3632017-06-22 12:04:24 +020084 <docker.push.registry>localhost:5000</docker.push.registry>
ChrisC5e9feb22017-06-21 02:38:57 -070085 <skip.docker.build>true</skip.docker.build>
ChrisC5e9feb22017-06-21 02:38:57 -070086 <skip.docker.push>true</skip.docker.push>
87 <skip.staging.artifacts>false</skip.staging.artifacts>
ChrisC5e9feb22017-06-21 02:38:57 -070088 </properties>
89
90 <distributionManagement>
91 <repository>
92 <id>ecomp-releases</id>
93 <name>Clamp Release Repository</name>
Determe, Sebastien (sd378r)c9058172017-08-31 13:43:36 +020094 <url>https://nexus.onap.org/content/repositories/releases/</url>
ChrisC5e9feb22017-06-21 02:38:57 -070095 </repository>
96 <snapshotRepository>
97 <id>ecomp-snapshots</id>
98 <name>Clamp Snapshot Repository</name>
Determe, Sebastien (sd378r)c9058172017-08-31 13:43:36 +020099 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
ChrisC5e9feb22017-06-21 02:38:57 -0700100 </snapshotRepository>
101 <site>
102 <id>ecomp-site</id>
Determe, Sebastien (sd378r)c9058172017-08-31 13:43:36 +0200103 <url>dav:https://nexus.onap.org/content/sites/site/org/onap/clamp/${project.version}</url>
ChrisC5e9feb22017-06-21 02:38:57 -0700104 </site>
105 </distributionManagement>
106
107 <repositories>
108 <repository>
109 <id>central</id>
110 <name>Maven 2 repository 2</name>
111 <url>http://repo2.maven.org/maven2/</url>
112 </repository>
113 <repository>
ChrisC5e9feb22017-06-21 02:38:57 -0700114 <id>ecomp-releases</id>
115 <name>ONAP Release Repository</name>
Determe, Sebastien (sd378r)c9058172017-08-31 13:43:36 +0200116 <url>https://nexus.onap.org/content/repositories/releases/</url>
ChrisC5e9feb22017-06-21 02:38:57 -0700117 </repository>
118 <repository>
119 <id>ecomp-staging</id>
120 <name>ONAP Staging Repository</name>
Determe, Sebastien (sd378r)c9058172017-08-31 13:43:36 +0200121 <url>https://nexus.onap.org/content/repositories/staging/</url>
ChrisC5e9feb22017-06-21 02:38:57 -0700122 </repository>
123 <repository>
124 <id>ecomp-snapshots</id>
125 <name>ONAP Snapshot Repository</name>
Determe, Sebastien (sd378r)c9058172017-08-31 13:43:36 +0200126 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -0700127 <snapshots>
128 <enabled>true</enabled>
129 </snapshots>
130 <releases>
131 <enabled>false</enabled>
132 </releases>
ChrisC5e9feb22017-06-21 02:38:57 -0700133 </repository>
134 <repository>
135 <id>spring-repo</id>
136 <name>Spring repo</name>
137 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
138 </repository>
139 <repository>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -0700140 <id>repository.jboss.org-public</id>
141 <name>JBoss.org Maven repository</name>
142 <url>https://repository.jboss.org/nexus/content/groups/public</url>
ChrisC5e9feb22017-06-21 02:38:57 -0700143 </repository>
144 </repositories>
145
ChrisC5e9feb22017-06-21 02:38:57 -0700146 <dependencyManagement>
147 <dependencies>
148 <dependency>
149 <!-- Import dependency management from Spring Boot -->
150 <groupId>org.springframework.boot</groupId>
151 <artifactId>spring-boot-dependencies</artifactId>
152 <version>1.4.1.RELEASE</version>
153 <type>pom</type>
154 <scope>import</scope>
155 </dependency>
156 </dependencies>
157 </dependencyManagement>
158
159 <dependencies>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -0700160
161 <dependency>
162 <groupId>com.googlecode.json-simple</groupId>
163 <artifactId>json-simple</artifactId>
164 <version>1.1</version>
165 </dependency>
166 <dependency>
167 <groupId>org.apache.commons</groupId>
168 <artifactId>commons-vfs2</artifactId>
169 <version>2.0</version>
170 </dependency>
171
172 <dependency>
173 <groupId>org.springframework.security</groupId>
174 <artifactId>spring-security-test</artifactId>
175
176 <scope>test</scope>
177 </dependency>
178
179
ChrisC5e9feb22017-06-21 02:38:57 -0700180 <!-- Dependencies of parent pom start -->
181 <dependency>
182 <groupId>com.att.ajsc</groupId>
183 <artifactId>sdk-java-common-logging</artifactId>
184 <version>${sdk.java.common.logging}</version>
185 </dependency>
186 <dependency>
187 <groupId>org.springframework.boot</groupId>
188 <artifactId>spring-boot-starter-tomcat</artifactId>
189 <scope>compile</scope>
190 </dependency>
191 <dependency>
192 <groupId>org.springframework.boot</groupId>
193 <artifactId>spring-boot-starter-actuator</artifactId>
194 </dependency>
195 <dependency>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -0700196 <groupId>org.springframework.boot</groupId>
197 <artifactId>spring-boot-starter-security</artifactId>
198 </dependency>
ChrisC5e9feb22017-06-21 02:38:57 -0700199 <dependency>
200 <groupId>org.springframework.boot</groupId>
201 <artifactId>spring-boot-starter-test</artifactId>
202 <scope>test</scope>
203 </dependency>
204 <dependency>
205 <groupId>joda-time</groupId>
206 <artifactId>joda-time</artifactId>
207 </dependency>
208 <dependency>
209 <groupId>org.springframework</groupId>
210 <artifactId>spring-context</artifactId>
211 </dependency>
212 <dependency>
213 <groupId>org.slf4j</groupId>
214 <artifactId>slf4j-api</artifactId>
215 </dependency>
216 <dependency>
217 <groupId>javax.ws.rs</groupId>
218 <artifactId>javax.ws.rs-api</artifactId>
219 <version>2.0</version>
220 </dependency>
221 <dependency>
222 <groupId>org.springframework</groupId>
223 <artifactId>spring-test</artifactId>
224 </dependency>
225 <dependency>
226 <groupId>junit</groupId>
227 <artifactId>junit</artifactId>
228 </dependency>
229 <dependency>
230 <groupId>org.mockito</groupId>
231 <artifactId>mockito-all</artifactId>
232 <version>1.9.5</version>
233 </dependency>
234 <dependency>
235 <groupId>commons-logging</groupId>
236 <artifactId>commons-logging</artifactId>
237 <version>1.1.1</version>
238 </dependency>
239 <dependency>
240 <groupId>org.springframework</groupId>
241 <artifactId>spring-aspects</artifactId>
242 </dependency>
243 <dependency>
244 <groupId>com.fasterxml.jackson.core</groupId>
245 <artifactId>jackson-core</artifactId>
246 </dependency>
247 <dependency>
248 <groupId>com.fasterxml.jackson.core</groupId>
249 <artifactId>jackson-databind</artifactId>
250 </dependency>
251 <dependency>
252 <groupId>org.springframework</groupId>
253 <artifactId>spring-webmvc</artifactId>
254 </dependency>
255 <dependency>
256 <groupId>org.springframework.boot</groupId>
257 <artifactId>spring-boot-starter-web</artifactId>
258 </dependency>
259 <dependency>
260 <groupId>log4j</groupId>
261 <artifactId>log4j</artifactId>
262 <version>1.2.17</version>
263 </dependency>
264 <dependency>
265 <groupId>org.springframework.boot</groupId>
266 <artifactId>spring-boot</artifactId>
267 </dependency>
268 <dependency>
269 <groupId>org.springframework.boot</groupId>
270 <artifactId>spring-boot-autoconfigure</artifactId>
271 </dependency>
272 <dependency>
273 <groupId>javax.transaction</groupId>
274 <artifactId>jta</artifactId>
275 <version>1.1</version>
276 </dependency>
277 <dependency>
278 <groupId>javax.persistence</groupId>
279 <artifactId>persistence-api</artifactId>
280 <version>1.0.2</version>
281 </dependency>
282 <dependency>
283 <groupId>org.hibernate</groupId>
284 <artifactId>hibernate-annotations</artifactId>
285 <version>3.5.6-Final</version>
286 </dependency>
287 <dependency>
288 <groupId>org.apache.geronimo.specs</groupId>
289 <artifactId>geronimo-jpa_2.0_spec</artifactId>
290 <version>1.1</version>
291 </dependency>
292 <dependency>
293 <groupId>dom4j</groupId>
294 <artifactId>dom4j</artifactId>
295 <version>1.6.1</version>
296 </dependency>
297 <!-- Dependencies of parent pom end -->
298 <dependency>
299 <groupId>com.att.ajsc</groupId>
300 <artifactId>sdk-java-camel-rest</artifactId>
301 <version>${sdk.camel.rest}</version>
302 </dependency>
303 <dependency>
304 <groupId>io.swagger</groupId>
305 <artifactId>swagger-core</artifactId>
306 <version>1.5.8</version>
307 </dependency>
308 <dependency>
309 <groupId>io.swagger</groupId>
310 <artifactId>swagger-annotations</artifactId>
311 <version>1.5.8</version>
312 </dependency>
Determe, Sebastien (sd378r)e35744d2017-08-29 04:21:41 -0700313
ChrisC5e9feb22017-06-21 02:38:57 -0700314 <!-- Camunda Core -->
315 <dependency>
316 <groupId>com.att.ajsc</groupId>
317 <artifactId>sdk-java-camunda-core</artifactId>
318 <version>${sdk.camunda.core}</version>
Determe, Sebastien (sd378r)99384f32017-09-11 15:30:54 +0200319 <exclusions>
320 <exclusion>
321 <groupId>mysql</groupId>
322 <artifactId>mysql-connector-java</artifactId>
323 </exclusion>
324 </exclusions>
ChrisC5e9feb22017-06-21 02:38:57 -0700325 </dependency>
326 <!-- Spring Mail -->
327 <dependency>
328 <groupId>org.springframework</groupId>
329 <artifactId>spring-context-support</artifactId>
330 </dependency>
331 <!-- CSI Logging -->
332 <dependency>
333 <groupId>com.att.ajsc</groupId>
334 <artifactId>sdk-java-common-interceptors</artifactId>
335 <version>${csi.logging}</version>
336 <exclusions>
337 <exclusion>
338 <groupId>org.eclipse.jetty.orbit</groupId>
339 <artifactId>javax.servlet</artifactId>
340 </exclusion>
341 <exclusion>
342 <groupId>com.att.ajsc</groupId>
343 <artifactId>ajsc-core</artifactId>
344 </exclusion>
345 </exclusions>
346 </dependency>
347 <!-- CSI Logging End -->
348 <dependency>
Pamela Dragosh17363362017-08-01 11:07:43 -0400349 <groupId>org.onap.policy.engine</groupId>
ChrisC5e9feb22017-06-21 02:38:57 -0700350 <artifactId>PolicyEngineAPI</artifactId>
Determe, Sebastien (sd378r)b1cc5ba2017-08-31 17:23:57 +0200351 <version>1.1.0</version>
ChrisC5e9feb22017-06-21 02:38:57 -0700352 <exclusions>
353 <exclusion>
354 <artifactId>log4j</artifactId>
355 <groupId>log4j</groupId>
356 </exclusion>
357 <exclusion>
358 <groupId>org.slf4j</groupId>
359 <artifactId>slf4j-log4j12</artifactId>
360 </exclusion>
361 <exclusion>
362 <artifactId>apache-log4j-extras</artifactId>
363 <groupId>log4j</groupId>
364 </exclusion>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -0700365 <exclusion>
366 <artifactId>jackson-databind</artifactId>
367 <groupId>com.fasterxml.jackson.core</groupId>
368 </exclusion>
Determe, Sebastien (sd378r)99384f32017-09-11 15:30:54 +0200369 <exclusion>
370 <groupId>mysql</groupId>
371 <artifactId>mysql-connector-java</artifactId>
372 </exclusion>
ChrisC5e9feb22017-06-21 02:38:57 -0700373 </exclusions>
374 </dependency>
375 <dependency>
Pamela Dragosh17363362017-08-01 11:07:43 -0400376 <groupId>org.onap.policy.common</groupId>
377 <artifactId>ONAP-Logging</artifactId>
Determe, Sebastien (sd378r)b1cc5ba2017-08-31 17:23:57 +0200378 <version>1.1.0</version>
ChrisC5e9feb22017-06-21 02:38:57 -0700379 <exclusions>
380 <exclusion>
381 <artifactId>log4j</artifactId>
382 <groupId>log4j</groupId>
383 </exclusion>
384 <exclusion>
385 <groupId>org.slf4j</groupId>
386 <artifactId>slf4j-log4j12</artifactId>
387 </exclusion>
388 <exclusion>
389 <artifactId>apache-log4j-extras</artifactId>
390 <groupId>log4j</groupId>
391 </exclusion>
392 </exclusions>
393 </dependency>
394 <dependency>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -0700395 <groupId>org.onap.policy.engine</groupId>
396 <artifactId>ControlloopPolicy</artifactId>
397 <version>1.1.0-SNAPSHOT</version>
398 <exclusions>
399 <exclusion>
400 <artifactId>log4j</artifactId>
401 <groupId>log4j</groupId>
402 </exclusion>
403 <exclusion>
404 <groupId>org.slf4j</groupId>
405 <artifactId>slf4j-log4j12</artifactId>
406 </exclusion>
407 <exclusion>
408 <artifactId>apache-log4j-extras</artifactId>
409 <groupId>log4j</groupId>
410 </exclusion>
411 </exclusions>
412 </dependency>
ChrisC5e9feb22017-06-21 02:38:57 -0700413 <dependency>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -0700414 <groupId>com.fasterxml.jackson.core</groupId>
415 <artifactId>jackson-databind</artifactId>
416 <version>2.6.3</version>
417 </dependency>
418 <dependency>
ChrisC5e9feb22017-06-21 02:38:57 -0700419 <groupId>com.fasterxml.jackson.dataformat</groupId>
420 <artifactId>jackson-dataformat-yaml</artifactId>
ChrisC5e9feb22017-06-21 02:38:57 -0700421 <version>2.6.3</version>
422 </dependency>
423 <dependency>
424 <groupId>org.apache.commons</groupId>
425 <artifactId>commons-csv</artifactId>
426 <version>1.3</version>
427 </dependency>
428 <dependency>
429 <groupId>org.jboss.resteasy</groupId>
430 <artifactId>resteasy-client</artifactId>
431 <version>3.0.8.Final</version>
432 </dependency>
433 <dependency>
434 <groupId>com.sun.faces</groupId>
435 <artifactId>jsf-api</artifactId>
436 <version>2.1.7</version>
437 </dependency>
438 <dependency>
439 <groupId>com.sun.faces</groupId>
440 <artifactId>jsf-impl</artifactId>
441 <version>2.1.7</version>
442 </dependency>
443
Determe, Sebastien (sd378r)99384f32017-09-11 15:30:54 +0200444 <!-- Remove the MYSQL connector and replace it by Mariadb -->
445 <dependency>
446 <groupId>org.mariadb.jdbc</groupId>
447 <artifactId>mariadb-java-client</artifactId>
448 <version>2.1.1</version>
449 </dependency>
ChrisC5e9feb22017-06-21 02:38:57 -0700450 </dependencies>
451
452 <build>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -0700453 <finalName>clamp</finalName>
454
ChrisC5e9feb22017-06-21 02:38:57 -0700455 <testResources>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -0700456 <testResource>
457 <directory>src/test/resources</directory>
Determe, Sebastien (sd378r)e35744d2017-08-29 04:21:41 -0700458 <excludes>
459 <exclude>**/*.jks</exclude>
460 </excludes>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -0700461 <filtering>true</filtering>
462 </testResource>
Determe, Sebastien (sd378r)e35744d2017-08-29 04:21:41 -0700463 <testResource>
464 <directory>src/test/resources/https</directory>
465 <includes>
466 <include>**.jks</include>
467 </includes>
468 <filtering>false</filtering>
469 <targetPath>https</targetPath>
470 </testResource>
ChrisC5e9feb22017-06-21 02:38:57 -0700471 </testResources>
472 <resources>
473 <resource>
474 <directory>src/main/resources</directory>
475 <filtering>true</filtering>
476 </resource>
477 <resource>
ChrisC5e9feb22017-06-21 02:38:57 -0700478 <directory>src/main/docker</directory>
479 <includes>
480 <include>**/*</include>
481 </includes>
482 <filtering>true</filtering>
483 </resource>
ChrisC5e9feb22017-06-21 02:38:57 -0700484 </resources>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -0700485
ChrisC5e9feb22017-06-21 02:38:57 -0700486 <plugins>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -0700487 <plugin>
Determe, Sebastien (sd378r)b1cc5ba2017-08-31 17:23:57 +0200488 <groupId>org.codehaus.groovy.maven</groupId>
489 <artifactId>gmaven-plugin</artifactId>
490 <version>1.0</version>
491 <executions>
492 <execution>
493 <phase>validate</phase>
494 <goals>
495 <goal>execute</goal>
496 </goals>
497 <configuration>
498 <source>${project.basedir}/src/main/script/TagVersion.groovy</source>
499 </configuration>
500 </execution>
501 </executions>
502 </plugin>
503 <plugin>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -0700504 <groupId>org.apache.maven.plugins</groupId>
505 <artifactId>maven-jar-plugin</artifactId>
506 <version>3.0.2</version>
507 <executions>
508 <execution>
509 <id>jar-with-only-classes</id>
510 <phase>package</phase>
511 <goals>
512 <goal>jar</goal>
513 </goals>
514 <configuration>
515 <classifier>classes</classifier>
516 <includes>
517 <include>org/**</include>
518 </includes>
519 </configuration>
520 </execution>
521 </executions>
522 </plugin>
523 <plugin>
524 <groupId>com.github.kongchen</groupId>
525 <artifactId>swagger-maven-plugin</artifactId>
526 <version>3.1.5</version>
527 <executions>
528 <execution>
529 <phase>compile</phase>
530 <goals>
531 <goal>generate</goal>
532 </goals>
533 <configuration>
534 <apiSources>
535 <apiSource>
536 <locations>
537 <location>org.onap.clamp.clds.service</location>
538 </locations>
539 <basePath>/</basePath>
540 <info>
541 <title>${project.artifactId} Service</title>
542 <version>${project.version}</version>
543 </info>
544 <swaggerDirectory>${project.build.directory}/classes/META-INF/resources/icd</swaggerDirectory>
545 </apiSource>
546 </apiSources>
547 </configuration>
548 </execution>
549 </executions>
550 </plugin>
551 <plugin>
552 <groupId>org.codehaus.mojo</groupId>
553 <artifactId>build-helper-maven-plugin</artifactId>
554 <version>3.0.0</version>
555 <executions>
556 <execution>
557 <goals>
558 <goal>attach-artifact</goal>
559 </goals>
560 <phase>package</phase>
561 <configuration>
562 <artifacts>
563 <artifact>
564 <file>${project.build.directory}/clamp-classes.jar</file>
565 <type>jar</type>
566 <classifier>classes</classifier>
567 </artifact>
568 </artifacts>
569 </configuration>
570 </execution>
571 </executions>
572 </plugin>
ChrisC5e9feb22017-06-21 02:38:57 -0700573
574 <plugin>
575 <groupId>org.springframework.boot</groupId>
576 <artifactId>spring-boot-maven-plugin</artifactId>
577 <version>1.5.3.RELEASE</version>
578 <executions>
579 <execution>
580 <goals>
581 <goal>repackage</goal>
582 </goals>
583 <phase>package</phase>
584 </execution>
585 </executions>
586 </plugin>
587 <plugin>
ChrisC5e9feb22017-06-21 02:38:57 -0700588 <groupId>org.apache.maven.plugins</groupId>
589 <artifactId>maven-gpg-plugin</artifactId>
590 <version>1.5</version>
591 <configuration>
592 <skip>true</skip>
593 </configuration>
594 <executions>
595 <execution>
596 <id>sign-artifacts</id>
597 <phase>verify</phase>
598 <goals>
599 <goal>sign</goal>
600 </goals>
601 </execution>
602 </executions>
603 </plugin>
604 <plugin>
605 <groupId>org.sonatype.plugins</groupId>
606 <artifactId>nexus-staging-maven-plugin</artifactId>
607 <version>1.6.7</version>
608 <extensions>true</extensions>
609 <configuration>
Determe, Sebastien (sd378r)c9058172017-08-31 13:43:36 +0200610 <nexusUrl>https://nexus.onap.org</nexusUrl>
Determe, Sebastien (sd378r)a32aaed2017-08-09 04:43:29 -0700611 <stagingProfileId>176c31dfe190a</stagingProfileId>
612 <serverId>ecomp-staging</serverId>
ChrisC5e9feb22017-06-21 02:38:57 -0700613 <skipNexusStagingDeployMojo>${skip.staging.artifacts}</skipNexusStagingDeployMojo>
614 </configuration>
615 </plugin>
616 <plugin>
ChrisC5e9feb22017-06-21 02:38:57 -0700617 <groupId>com.spotify</groupId>
618 <artifactId>docker-maven-plugin</artifactId>
Determe, Sebastien (sd378r)3c529b92017-08-09 06:02:55 -0700619 <version>1.0.0</version>
ChrisC5e9feb22017-06-21 02:38:57 -0700620 <configuration>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -0700621 <imageName>onap/clamp</imageName>
ChrisC5e9feb22017-06-21 02:38:57 -0700622 <dockerDirectory>src/main/docker</dockerDirectory>
623 <serverId>docker-hub</serverId>
624 <imageTags>
ChrisC5e9feb22017-06-21 02:38:57 -0700625 <imageTag>latest</imageTag>
Determe, Sebastien (sd378r)b1cc5ba2017-08-31 17:23:57 +0200626 <imageTag>${project.docker.latesttagtimestamp.version}</imageTag>
627 <imageTag>${project.docker.latesttag.version}</imageTag>
ChrisC5e9feb22017-06-21 02:38:57 -0700628 </imageTags>
629 <forceTags>true</forceTags>
630 <resources>
631 <resource>
632 <targetPath>/</targetPath>
633 <directory>${project.build.directory}</directory>
634 <include>${project.build.finalName}.jar</include>
635 </resource>
636 <resource>
637 <targetPath>/</targetPath>
638 <directory>${project.build.directory}</directory>
639 <include>etc/config/**</include>
640 </resource>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -0700641 <resource>
642 <targetPath>/</targetPath>
643 <directory>${project.build.directory}</directory>
644 <include>etc/keystore/**</include>
645 </resource>
ChrisC5e9feb22017-06-21 02:38:57 -0700646 </resources>
647 </configuration>
648 <executions>
649 <execution>
650 <id>build-image</id>
651 <phase>package</phase>
652 <goals>
653 <goal>build</goal>
654 </goals>
655 <configuration>
656 <skipDockerBuild>${skip.docker.build}</skipDockerBuild>
657 <buildArgs>
658 <http_proxy>${env.HTTP_PROXY}</http_proxy>
659 <https_proxy>${env.HTTPS_PROXY}</https_proxy>
660 </buildArgs>
661 </configuration>
662 </execution>
Determe, Sebastien (sd378r)deaff892017-09-01 10:09:52 +0200663
664 <execution>
665 <id>tag-image-latest-timestamp</id>
666 <phase>package</phase>
667 <goals>
668 <goal>tag</goal>
669 </goals>
670 <configuration>
671 <image>onap/clamp</image>
672 <newName>${docker.push.registry}/onap/clamp:${project.docker.latesttagtimestamp.version}</newName>
673 <skipDockerTag>${skip.docker.push}</skipDockerTag>
674 </configuration>
675 </execution>
676 <execution>
677 <id>push-image-latest-timestamp</id>
678 <phase>deploy</phase>
679 <goals>
680 <goal>push</goal>
681 </goals>
682 <configuration>
683 <imageName>${docker.push.registry}/onap/clamp:${project.docker.latesttagtimestamp.version}</imageName>
684 <skipDockerPush>${skip.docker.push}</skipDockerPush>
685 </configuration>
686 </execution>
687 <execution>
688 <id>tag-image-latest</id>
689 <phase>package</phase>
690 <goals>
691 <goal>tag</goal>
692 </goals>
693 <configuration>
694 <image>onap/clamp</image>
695 <newName>${docker.push.registry}/onap/clamp:${project.docker.latesttag.version}</newName>
696 <skipDockerTag>${skip.docker.push}</skipDockerTag>
697 </configuration>
698 </execution>
699 <execution>
700 <id>push-image-latest</id>
701 <phase>deploy</phase>
702 <goals>
703 <goal>push</goal>
704 </goals>
705 <configuration>
706 <imageName>${docker.push.registry}/onap/clamp:${project.docker.latesttag.version}</imageName>
707 <skipDockerPush>${skip.docker.push}</skipDockerPush>
708 </configuration>
709 </execution>
ChrisC5e9feb22017-06-21 02:38:57 -0700710 <execution>
Determe, Sebastien (sd378r)a32aaed2017-08-09 04:43:29 -0700711 <id>tag-image</id>
712 <phase>package</phase>
713 <goals>
714 <goal>tag</goal>
715 </goals>
716 <configuration>
717 <image>onap/clamp</image>
Determe, Sebastien (sd378r)deaff892017-09-01 10:09:52 +0200718 <newName>${docker.push.registry}/onap/clamp:latest</newName>
Determe, Sebastien (sd378r)d604f2e2017-08-09 05:53:56 -0700719 <skipDockerTag>${skip.docker.push}</skipDockerTag>
Determe, Sebastien (sd378r)a32aaed2017-08-09 04:43:29 -0700720 </configuration>
721 </execution>
Determe, Sebastien (sd378r)29ed4a92017-08-09 04:12:39 -0700722 <execution>
ChrisC5e9feb22017-06-21 02:38:57 -0700723 <id>push-image</id>
724 <phase>deploy</phase>
725 <goals>
726 <goal>push</goal>
727 </goals>
728 <configuration>
Determe, Sebastien (sd378r)deaff892017-09-01 10:09:52 +0200729 <imageName>${docker.push.registry}/onap/clamp:latest</imageName>
ChrisC5e9feb22017-06-21 02:38:57 -0700730 <skipDockerPush>${skip.docker.push}</skipDockerPush>
731 </configuration>
732 </execution>
733 </executions>
734 </plugin>
735 <plugin>
736 <groupId>org.apache.maven.plugins</groupId>
737 <artifactId>maven-surefire-plugin</artifactId>
738 <version>2.19.1</version>
739 <configuration>
740 <forkCount>1</forkCount>
741 <reuseForks>false</reuseForks>
742 </configuration>
743 </plugin>
744
745 <plugin>
746 <groupId>org.apache.maven.plugins</groupId>
747 <artifactId>maven-failsafe-plugin</artifactId>
748 <version>2.16</version>
749
750 <executions>
751 <execution>
Determe, Sebastien (sd378r)e35744d2017-08-29 04:21:41 -0700752 <id>integration-tests</id>
ChrisC5e9feb22017-06-21 02:38:57 -0700753 <goals>
754 <goal>integration-test</goal>
755 <goal>verify</goal>
756 </goals>
757 <configuration>
758 <forkCount>1</forkCount>
759 <reuseForks>false</reuseForks>
760 </configuration>
761 </execution>
762 </executions>
763
764 </plugin>
765 <plugin>
766 <groupId>io.fabric8</groupId>
767 <artifactId>docker-maven-plugin</artifactId>
768 <version>0.16.5</version>
769 <configuration>
770 <verbose>true</verbose>
771 <apiVersion>1.23</apiVersion>
772 <images>
773 <image>
774 <name>mariadb:10.1.11</name>
775 <alias>mariadb</alias>
776 <run>
777 <env>
778 <MYSQL_ROOT_PASSWORD>strong_pitchou</MYSQL_ROOT_PASSWORD>
779 </env>
780 <hostname>mariadb</hostname>
781 <volumes>
782 <bind>
783 <volume>${project.basedir}/extra/sql/:/docker-entrypoint-initdb.d</volume>
784 <volume>${project.basedir}/extra/docker/mariadb/conf1:/etc/mysql/conf.d</volume>
785 </bind>
786 </volumes>
787 <wait>
788 <log>socket: '/var/run/mysqld/mysqld.sock' port: 3306 mariadb.org binary distribution</log>
ChrisC6c9759e2017-08-30 01:13:58 -0700789 <time>600000</time>
ChrisC5e9feb22017-06-21 02:38:57 -0700790 </wait>
791 <ports>
792 <port>${docker.mariadb.port.host}:3306</port>
793 </ports>
794 </run>
795 </image>
796 </images>
797 </configuration>
798
799 <executions>
800 <execution>
801 <id>mariadb-start-for-it</id>
802 <phase>pre-integration-test</phase>
803 <goals>
804 <goal>start</goal>
805 </goals>
806 <configuration>
807 <skip>${skipITs}</skip>
808 </configuration>
809 </execution>
810 <execution>
811 <id>mariadb-stop-for-it</id>
812 <phase>post-integration-test</phase>
813 <goals>
814 <goal>stop</goal>
815 </goals>
816 <configuration>
817 <skip>${skipITs}</skip>
818 </configuration>
819 </execution>
820 </executions>
821 </plugin>
822
823 <plugin>
824 <groupId>org.jacoco</groupId>
825 <artifactId>jacoco-maven-plugin</artifactId>
826 <version>0.7.7.201606060606</version>
827 <configuration>
828 <dumpOnExit>true</dumpOnExit>
829 <includes>
830 <include>org.onap.clamp.*</include>
831 </includes>
832 </configuration>
833 <executions>
834 <execution>
Determe, Sebastien (sd378r)e35744d2017-08-29 04:21:41 -0700835 <id>pre-unit-test</id>
ChrisC5e9feb22017-06-21 02:38:57 -0700836 <goals>
837 <goal>prepare-agent</goal>
838 </goals>
839 <configuration>
840 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
841 <!-- <append>true</append> -->
842 </configuration>
843 </execution>
844 <execution>
Determe, Sebastien (sd378r)e35744d2017-08-29 04:21:41 -0700845 <id>pre-integration-test</id>
ChrisC5e9feb22017-06-21 02:38:57 -0700846 <phase>pre-integration-test</phase>
847 <goals>
848 <goal>prepare-agent</goal>
849 </goals>
850 <configuration>
851 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
852 <!-- <append>true</append> -->
853 </configuration>
854 </execution>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -0700855 <execution>
Determe, Sebastien (sd378r)b1cc5ba2017-08-31 17:23:57 +0200856 <goals>
857 <goal>merge</goal>
858 </goals>
859 <phase>post-integration-test</phase>
860 <configuration>
861 <fileSets>
862 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
863 <directory>${project.build.directory}/coverage-reports</directory>
864 <includes>
865 <include>*.exec</include>
866 </includes>
867 </fileSet>
868 </fileSets>
869 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
870 </configuration>
871 </execution>
ChrisC5e9feb22017-06-21 02:38:57 -0700872 </executions>
873 </plugin>
874
ChrisC5e9feb22017-06-21 02:38:57 -0700875 <!-- This plugin will be useful when we will have multi-modules project -->
876 <plugin>
877 <groupId>org.codehaus.mojo</groupId>
878 <artifactId>versions-maven-plugin</artifactId>
879 <version>1.3.1</version>
880 </plugin>
881 </plugins>
882 </build>
883 <profiles>
884 <profile>
885 <id>docker</id>
886 <properties>
887 <skip.staging.artifacts>true</skip.staging.artifacts>
888 <skip.docker.build>false</skip.docker.build>
Determe, Sebastien (sd378r)e751aed2017-08-31 18:02:22 +0200889 <skip.docker.tag>false</skip.docker.tag>
890 <skip.docker.push>false</skip.docker.push>
ChrisC5e9feb22017-06-21 02:38:57 -0700891 </properties>
892 </profile>
893 </profiles>
894</project>