blob: c8dd22327aaf2cc9993fb3a3c1f54ce6504425ed [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 ================================================================================
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +01006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights
Determe, Sebastien (sd378r)e35744d2017-08-29 04:21:41 -07007 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 ===================================================================
Determe, Sebastien (sd378r)e35744d2017-08-29 04:21:41 -070022-->
23
ChrisC5e9feb22017-06-21 02:38:57 -070024<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +010025 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
26 <modelVersion>4.0.0</modelVersion>
27 <groupId>org.onap.clamp</groupId>
28 <artifactId>clds</artifactId>
Determe, Sebastien (sd378r)7a58af82018-06-06 13:47:21 +020029 <version>3.0.0-SNAPSHOT</version>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +010030 <name>clamp</name>
ChrisC5e9feb22017-06-21 02:38:57 -070031
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +010032 <parent>
33 <groupId>org.onap.oparent</groupId>
34 <artifactId>oparent</artifactId>
Determe, Sebastien (sd378r)b3737db2018-03-15 10:43:48 +010035 <version>1.1.0</version>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +010036 </parent>
Determe, Sebastien (sd378r)a66fe452017-08-08 06:42:49 -070037
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +010038 <description>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +010039 This project build the ONAP CLAMP JAR that contains CLAMP back-end code and its UI part.
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -070040
41 By Default "mvn clean install" command will execute also the unit tests
42 and the integration tests. The integration tests require a docker engine running.
43
Determe, Sebastien (sd378r)08b94922018-03-27 10:25:41 +020044 If you want to skip the integration test you can by doing:
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -070045 "mvn clean install -DskipITs=true"
46
47 For Spring it's possible to specify the application.properties location
48 "mvn clean install -Dspring.config.location=classpath:application-test.properties"
49
50 The application.properties contains the location of the CLAMP parameters files:
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +010051 - org.onap.clamp.config.files.cldsUsers=classpath:/clds/clds-users.json
52 - org.onap.clamp.config.files.globalClds=classpath:/clds/globalClds.properties
ChrisCae04cf32018-02-05 05:21:59 -080053
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +010054 </description>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -070055
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +010056 <properties>
Jessica Wagantall0a689de2018-04-04 18:29:29 -070057 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +010058 <clamp.project.version>${project.version}</clamp.project.version>
59 <clamp.build.timestamp>${maven.build.timestamp}</clamp.build.timestamp>
60 <maven.compiler.source>1.8</maven.compiler.source>
61 <maven.compiler.target>1.8</maven.compiler.target>
62 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
63 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -070064
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +010065 <docker.mariadb.port.host>3306</docker.mariadb.port.host>
Determe, Sebastien (sd378r)378d05b2018-03-23 14:46:56 +010066 <docker.http-cache.port.host>8085</docker.http-cache.port.host>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +010067 <project.scm.id>git-server</project.scm.id>
68 <java.version>1.8</java.version>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +010069
Bertozzi, Julien (jb379x)009f7132018-03-08 15:53:57 -050070 <swagger.jaxrs2.version>2.0.0-rc4</swagger.jaxrs2.version>
71 <guava.version>20.0</guava.version>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +010072 <eelf.core.version>1.0.0</eelf.core.version>
73 <camel.version>2.20.1</camel.version>
Determe, Sebastien (sd378r)4e2bcb22018-04-25 10:43:39 +020074 <springboot.version>1.5.12.RELEASE</springboot.version>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -070075
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +010076 <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>
ChrisC5e9feb22017-06-21 02:38:57 -070083
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +010084 <docker.push.registry>localhost:5000</docker.push.registry>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +020085 <docker.skip.build>true</docker.skip.build>
86 <docker.skip.push>true</docker.skip.push>
87 <docker.skip.tag>true</docker.skip.tag>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +010088 <skip.staging.artifacts>false</skip.staging.artifacts>
Determe, Sebastien (sd378r)885d7c12018-04-09 17:56:53 +020089 <python.http.proxy.param></python.http.proxy.param>
Determe, Sebastien (sd378r)7a58af82018-06-06 13:47:21 +020090 <tomcat.version>8.5.28</tomcat.version>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +010091 </properties>
ChrisC5e9feb22017-06-21 02:38:57 -070092
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +010093 <distributionManagement>
94 <repository>
95 <id>ecomp-releases</id>
96 <name>Clamp Release Repository</name>
97 <url>https://nexus.onap.org/content/repositories/releases/</url>
98 </repository>
99 <snapshotRepository>
100 <id>ecomp-snapshots</id>
101 <name>Clamp Snapshot Repository</name>
102 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
103 </snapshotRepository>
104 <site>
105 <id>ecomp-site</id>
106 <url>dav:https://nexus.onap.org/content/sites/site/org/onap/clamp/${project.version}</url>
107 </site>
108 </distributionManagement>
ChrisC5e9feb22017-06-21 02:38:57 -0700109
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100110 <repositories>
111 <repository>
112 <id>central</id>
113 <name>Maven 2 repository 2</name>
114 <url>http://repo2.maven.org/maven2/</url>
115 </repository>
116 <repository>
117 <id>ecomp-releases</id>
118 <name>ONAP Release Repository</name>
119 <url>https://nexus.onap.org/content/repositories/releases/</url>
120 </repository>
121 <repository>
122 <id>ecomp-staging</id>
123 <name>ONAP Staging Repository</name>
124 <url>https://nexus.onap.org/content/repositories/staging/</url>
125 </repository>
126 <repository>
127 <id>ecomp-snapshots</id>
128 <name>ONAP Snapshot Repository</name>
129 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
130 <snapshots>
131 <enabled>true</enabled>
132 </snapshots>
133 <releases>
134 <enabled>false</enabled>
135 </releases>
136 </repository>
137 <repository>
138 <id>spring-repo</id>
139 <name>Spring repo</name>
140 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
141 </repository>
142 <repository>
143 <id>repository.jboss.org-public</id>
144 <name>JBoss.org Maven repository</name>
145 <url>https://repository.jboss.org/nexus/content/groups/public</url>
146 </repository>
xg353y2aad6d62018-05-18 17:59:06 +0200147 <repository>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200148 <id>jcentral</id>
149 <name>bintray</name>
150 <url>http://jcenter.bintray.com</url>
151 <snapshots>
152 <enabled>false</enabled>
153 </snapshots>
xg353y2aad6d62018-05-18 17:59:06 +0200154 </repository>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100155 </repositories>
ChrisC5e9feb22017-06-21 02:38:57 -0700156
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100157 <dependencyManagement>
158 <dependencies>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100159 <!-- Spring Boot BOM -->
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100160 <dependency>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100161 <groupId>org.springframework.boot</groupId>
162 <artifactId>spring-boot-dependencies</artifactId>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100163 <version>${springboot.version}</version>
164 <type>pom</type>
165 <scope>import</scope>
166 </dependency>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100167 <!-- Camel BOM -->
168 <dependency>
169 <groupId>org.apache.camel</groupId>
170 <artifactId>camel-spring-boot-dependencies</artifactId>
171 <version>${camel.version}</version>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100172 <type>pom</type>
173 <scope>import</scope>
174 </dependency>
175 </dependencies>
176 </dependencyManagement>
ChrisC5e9feb22017-06-21 02:38:57 -0700177
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100178 <dependencies>
179 <dependency>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100180 <groupId>com.att.eelf</groupId>
181 <artifactId>eelf-core</artifactId>
182 <version>${eelf.core.version}</version>
183 </dependency>
Determe, Sebastien (sd378r)7a58af82018-06-06 13:47:21 +0200184 <dependency>
185 <groupId>org.apache.tomcat.embed</groupId>
186 <artifactId>tomcat-embed-core</artifactId>
187 <version>${tomcat.version}</version>
188 </dependency>
189 <dependency>
190 <groupId>org.apache.tomcat.embed</groupId>
191 <artifactId>tomcat-embed-el</artifactId>
192 <version>${tomcat.version}</version>
193 </dependency>
194 <dependency>
195 <groupId>org.apache.tomcat.embed</groupId>
196 <artifactId>tomcat-embed-websocket</artifactId>
197 <version>${tomcat.version}</version>
198 </dependency>
199 <dependency>
200 <groupId>org.apache.tomcat</groupId>
201 <artifactId>tomcat-annotations-api</artifactId>
202 <version>${tomcat.version}</version>
203 </dependency>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100204 <!-- For CAMEL -->
205 <dependency>
206 <groupId>org.apache.camel</groupId>
207 <artifactId>camel-spring-boot-starter</artifactId>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100208 </dependency>
209 <dependency>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100210 <groupId>org.apache.camel</groupId>
211 <artifactId>camel-jaxb-starter</artifactId>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100212 </dependency>
213 <dependency>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100214 <groupId>org.apache.camel</groupId>
Determe, Sebastien (sd378r)7c083742018-02-14 15:31:55 +0100215 <artifactId>camel-servlet-starter</artifactId>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100216 </dependency>
Determe, Sebastien (sd378r)f7855162018-04-27 14:02:39 +0200217 <dependency>
218 <groupId>javax.xml.bind</groupId>
219 <artifactId>jaxb-api</artifactId>
220 <version>2.3.0</version>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200221 </dependency>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100222 <!-- Spring famework -->
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100223 <dependency>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100224 <groupId>org.springframework.boot</groupId>
225 <artifactId>spring-boot-starter-web</artifactId>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100226 </dependency>
227 <dependency>
228 <groupId>org.springframework.boot</groupId>
229 <artifactId>spring-boot-starter-tomcat</artifactId>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100230 </dependency>
231 <dependency>
Determe, Sebastien (sd378r)7c083742018-02-14 15:31:55 +0100232 <groupId>com.paypal.springboot</groupId>
233 <artifactId>resteasy-spring-boot-starter</artifactId>
234 <version>2.3.4-RELEASE</version>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100235 </dependency>
236 <dependency>
237 <groupId>org.springframework</groupId>
238 <artifactId>spring-jdbc</artifactId>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100239 </dependency>
240 <dependency>
241 <groupId>org.springframework.boot</groupId>
242 <artifactId>spring-boot-starter-security</artifactId>
243 </dependency>
244 <dependency>
245 <groupId>org.springframework.boot</groupId>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100246 <artifactId>spring-boot-starter-actuator</artifactId>
247 </dependency>
248 <dependency>
249 <groupId>org.springframework.boot</groupId>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100250 <artifactId>spring-boot-starter-test</artifactId>
251 <scope>test</scope>
Determe, Sebastien (sd378r)7c083742018-02-14 15:31:55 +0100252 <exclusions>
253 <exclusion>
254 <groupId>com.vaadin.external.google</groupId>
255 <artifactId>android-json</artifactId>
256 </exclusion>
257 </exclusions>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100258 </dependency>
Determe, Sebastien (sd378r)7c083742018-02-14 15:31:55 +0100259 <!-- Others dependencies -->
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100260 <dependency>
xg353ye6409552018-05-08 16:21:39 +0200261 <groupId>org.onap.aaf.authz</groupId>
262 <artifactId>aaf-cadi-aaf</artifactId>
263 <version>2.1.0</version>
264 <exclusions>
265 <exclusion>
266 <groupId>javax.servlet</groupId>
267 <artifactId>servlet-api</artifactId>
268 </exclusion>
269 </exclusions>
270 </dependency>
271 <dependency>
Determe, Sebastien (sd378r)7c083742018-02-14 15:31:55 +0100272 <groupId>ch.qos.logback</groupId>
273 <artifactId>logback-core</artifactId>
274 <version>1.2.3</version>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100275 </dependency>
276 <dependency>
Determe, Sebastien (sd378r)7c083742018-02-14 15:31:55 +0100277 <groupId>ch.qos.logback</groupId>
278 <artifactId>logback-classic</artifactId>
279 <version>1.2.3</version>
280 </dependency>
281 <dependency>
282 <groupId>commons-dbcp</groupId>
283 <artifactId>commons-dbcp</artifactId>
284 <version>1.4</version>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100285 </dependency>
286 <dependency>
287 <groupId>commons-io</groupId>
288 <artifactId>commons-io</artifactId>
289 <version>2.6</version>
290 </dependency>
291 <dependency>
292 <groupId>com.googlecode.json-simple</groupId>
293 <artifactId>json-simple</artifactId>
294 </dependency>
295 <dependency>
296 <groupId>org.apache.commons</groupId>
297 <artifactId>commons-vfs2</artifactId>
Determe, Sebastien (sd378r)886191e2018-03-02 11:42:06 +0100298 <version>2.2</version>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100299 </dependency>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100300 <dependency>
301 <groupId>joda-time</groupId>
302 <artifactId>joda-time</artifactId>
303 </dependency>
304 <dependency>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100305 <groupId>org.slf4j</groupId>
306 <artifactId>slf4j-api</artifactId>
307 </dependency>
308 <dependency>
309 <groupId>javax.ws.rs</groupId>
310 <artifactId>javax.ws.rs-api</artifactId>
311 <version>2.0</version>
312 </dependency>
313 <dependency>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100314 <groupId>junit</groupId>
315 <artifactId>junit</artifactId>
316 </dependency>
317 <dependency>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100318 <groupId>javax.transaction</groupId>
319 <artifactId>jta</artifactId>
320 <version>1.1</version>
321 </dependency>
322 <dependency>
323 <groupId>javax.persistence</groupId>
324 <artifactId>persistence-api</artifactId>
325 <version>1.0.2</version>
326 </dependency>
327 <dependency>
328 <groupId>org.hibernate</groupId>
329 <artifactId>hibernate-annotations</artifactId>
330 <version>3.5.6-Final</version>
331 </dependency>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100332 <dependency>
333 <groupId>dom4j</groupId>
334 <artifactId>dom4j</artifactId>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100335 </dependency>
Determe, Sebastien (sd378r)e35744d2017-08-29 04:21:41 -0700336
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100337 <dependency>
338 <groupId>org.onap.policy.engine</groupId>
339 <artifactId>PolicyEngineAPI</artifactId>
Determe, Sebastien (sd378r)42765b22018-03-28 17:25:55 +0200340 <version>1.2.0</version>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100341 <exclusions>
342 <exclusion>
Bertozzi, Julien (jb379x)009f7132018-03-08 15:53:57 -0500343 <groupId>com.google.guava</groupId>
344 <artifactId>guava</artifactId>
345 </exclusion>
346 <exclusion>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100347 <artifactId>log4j</artifactId>
348 <groupId>log4j</groupId>
349 </exclusion>
350 <exclusion>
351 <groupId>org.slf4j</groupId>
352 <artifactId>slf4j-log4j12</artifactId>
353 </exclusion>
354 <exclusion>
355 <artifactId>apache-log4j-extras</artifactId>
356 <groupId>log4j</groupId>
357 </exclusion>
358 <exclusion>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100359 <groupId>mysql</groupId>
360 <artifactId>mysql-connector-java</artifactId>
361 </exclusion>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100362 <exclusion>
363 <groupId>commons-io</groupId>
364 <artifactId>commons-io</artifactId>
365 </exclusion>
Determe, Sebastien (sd378r)a75076b2018-04-09 14:06:35 +0200366 <exclusion>
367 <artifactId>grizzly-http</artifactId>
368 <groupId>org.glassfish.grizzly</groupId>
369 </exclusion>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100370 </exclusions>
371 </dependency>
372 <dependency>
373 <groupId>org.onap.policy.common</groupId>
374 <artifactId>ONAP-Logging</artifactId>
Determe, Sebastien (sd378r)42765b22018-03-28 17:25:55 +0200375 <version>1.1.3</version>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100376 <exclusions>
377 <exclusion>
378 <artifactId>log4j</artifactId>
379 <groupId>log4j</groupId>
380 </exclusion>
381 <exclusion>
382 <groupId>org.slf4j</groupId>
383 <artifactId>slf4j-log4j12</artifactId>
384 </exclusion>
385 <exclusion>
386 <artifactId>apache-log4j-extras</artifactId>
387 <groupId>log4j</groupId>
388 </exclusion>
389 </exclusions>
390 </dependency>
391 <dependency>
392 <groupId>org.onap.policy.engine</groupId>
393 <artifactId>PolicyEngineUtils</artifactId>
Determe, Sebastien (sd378r)42765b22018-03-28 17:25:55 +0200394 <version>1.1.3</version>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100395 <exclusions>
396 <exclusion>
397 <artifactId>log4j</artifactId>
398 <groupId>log4j</groupId>
399 </exclusion>
400 <exclusion>
401 <groupId>org.slf4j</groupId>
402 <artifactId>slf4j-log4j12</artifactId>
403 </exclusion>
404 <exclusion>
405 <artifactId>apache-log4j-extras</artifactId>
406 <groupId>log4j</groupId>
407 </exclusion>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100408 <exclusion>
409 <groupId>mysql</groupId>
410 <artifactId>mysql-connector-java</artifactId>
411 </exclusion>
412 <exclusion>
413 <groupId>org.mariadb.jdbc</groupId>
414 <artifactId>mariadb-java-client</artifactId>
415 </exclusion>
Determe, Sebastien (sd378r)57867d12018-02-15 16:04:12 +0100416 <exclusion>
417 <groupId>com.att.nsa</groupId>
418 <artifactId>dmaapClient</artifactId>
419 </exclusion>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100420 </exclusions>
421 </dependency>
422 <dependency>
423 <groupId>org.onap.policy.drools-applications</groupId>
424 <artifactId>policy-yaml</artifactId>
Determe, Sebastien (sd378r)42765b22018-03-28 17:25:55 +0200425 <version>1.1.3</version>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100426 <exclusions>
427 <exclusion>
428 <artifactId>log4j</artifactId>
429 <groupId>log4j</groupId>
430 </exclusion>
431 <exclusion>
432 <groupId>org.slf4j</groupId>
433 <artifactId>slf4j-log4j12</artifactId>
434 </exclusion>
435 <exclusion>
436 <artifactId>apache-log4j-extras</artifactId>
437 <groupId>log4j</groupId>
438 </exclusion>
439 </exclusions>
440 </dependency>
441 <dependency>
442 <groupId>org.onap.policy.drools-applications</groupId>
443 <artifactId>sdc</artifactId>
Determe, Sebastien (sd378r)42765b22018-03-28 17:25:55 +0200444 <version>1.1.3</version>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100445 <exclusions>
446 <exclusion>
447 <artifactId>log4j</artifactId>
448 <groupId>log4j</groupId>
449 </exclusion>
450 <exclusion>
451 <groupId>org.slf4j</groupId>
452 <artifactId>slf4j-log4j12</artifactId>
453 </exclusion>
454 <exclusion>
455 <artifactId>apache-log4j-extras</artifactId>
456 <groupId>log4j</groupId>
457 </exclusion>
458 </exclusions>
459 </dependency>
460 <dependency>
461 <groupId>org.onap.policy.drools-applications</groupId>
462 <artifactId>aai</artifactId>
Determe, Sebastien (sd378r)42765b22018-03-28 17:25:55 +0200463 <version>1.1.3</version>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100464 <exclusions>
465 <exclusion>
466 <artifactId>log4j</artifactId>
467 <groupId>log4j</groupId>
468 </exclusion>
469 <exclusion>
470 <groupId>org.slf4j</groupId>
471 <artifactId>slf4j-log4j12</artifactId>
472 </exclusion>
473 <exclusion>
474 <artifactId>apache-log4j-extras</artifactId>
475 <groupId>log4j</groupId>
476 </exclusion>
477 </exclusions>
478 </dependency>
479 <dependency>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100480 <groupId>org.apache.commons</groupId>
481 <artifactId>commons-csv</artifactId>
482 <version>1.3</version>
483 </dependency>
484 <dependency>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100485 <groupId>com.sun.faces</groupId>
486 <artifactId>jsf-api</artifactId>
487 <version>2.1.7</version>
488 </dependency>
489 <dependency>
490 <groupId>com.sun.faces</groupId>
491 <artifactId>jsf-impl</artifactId>
492 <version>2.1.7</version>
493 </dependency>
Determe, Sebastien (sd378r)886191e2018-03-02 11:42:06 +0100494 <!-- Other dependencies to fix nexus IQ reported vulnerabilities -->
495 <dependency>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200496 <groupId>org.codehaus.plexus</groupId>
497 <artifactId>plexus-utils</artifactId>
498 <version>3.0.24</version>
Determe, Sebastien (sd378r)886191e2018-03-02 11:42:06 +0100499 </dependency>
500 <dependency>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200501 <groupId>commons-fileupload</groupId>
502 <artifactId>commons-fileupload</artifactId>
503 <version>1.3.3</version>
Determe, Sebastien (sd378r)886191e2018-03-02 11:42:06 +0100504 </dependency>
505 <dependency>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200506 <groupId>org.jboss.spec.javax.ws.rs</groupId>
507 <artifactId>jboss-jaxrs-api_2.0_spec</artifactId>
508 <version>1.0.1.Final</version>
Determe, Sebastien (sd378r)886191e2018-03-02 11:42:06 +0100509 </dependency>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100510 <!-- Remove the MYSQL connector and replace it by Mariadb -->
511 <dependency>
512 <groupId>org.mariadb.jdbc</groupId>
513 <artifactId>mariadb-java-client</artifactId>
Determe, Sebastien (sd378r)373a9272018-02-20 18:19:39 +0100514 <version>2.2.1</version>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100515 </dependency>
Determe, Sebastien (sd378r)465bfe22018-03-01 15:15:30 +0100516 <!-- For SDC Controller -->
517 <dependency>
Determe, Sebastien (sd378r)dd2d7902018-04-06 11:48:07 +0200518 <groupId>org.onap.sdc.sdc-distribution-client</groupId>
Determe, Sebastien (sd378r)465bfe22018-03-01 15:15:30 +0100519 <artifactId>sdc-distribution-client</artifactId>
Determe, Sebastien (sd378r)dd2d7902018-04-06 11:48:07 +0200520 <version>1.3.0</version>
Determe, Sebastien (sd378r)465bfe22018-03-01 15:15:30 +0100521 </dependency>
Determe, Sebastien (sd378r)20296242018-03-12 19:37:34 +0100522 <dependency>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200523 <groupId>org.onap.sdc.sdc-tosca</groupId>
524 <artifactId>sdc-tosca</artifactId>
525 <version>1.3.0</version>
Determe, Sebastien (sd378r)20296242018-03-12 19:37:34 +0100526 </dependency>
xg353y2aad6d62018-05-18 17:59:06 +0200527 <!-- To generate Swagger.json, swagger.html and swagger.pdf -->
xg353y2aad6d62018-05-18 17:59:06 +0200528 <dependency>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200529 <groupId>io.springfox</groupId>
530 <artifactId>springfox-swagger2</artifactId>
531 <version>2.4.0</version>
532 <scope>test</scope>
xg353y2aad6d62018-05-18 17:59:06 +0200533 </dependency>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200534 <dependency>
535 <groupId>io.github.robwin</groupId>
536 <artifactId>assertj-swagger</artifactId>
537 <version>0.2.0</version>
538 <scope>test</scope>
539 </dependency>
540 <dependency>
541 <groupId>io.github.swagger2markup</groupId>
542 <artifactId>swagger2markup-spring-restdocs-ext</artifactId>
543 <version>1.2.0</version>
544 <scope>test</scope>
545 </dependency>
546 </dependencies>
547 <pluginRepositories>
xg353y2aad6d62018-05-18 17:59:06 +0200548 <pluginRepository>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200549 <snapshots>
550 <enabled>false</enabled>
551 </snapshots>
552 <id>jcenter-releases</id>
553 <name>jcenter</name>
554 <url>http://jcenter.bintray.com</url>
xg353y2aad6d62018-05-18 17:59:06 +0200555 </pluginRepository>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200556 </pluginRepositories>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100557 <build>
558 <finalName>clamp</finalName>
ChrisC5e9feb22017-06-21 02:38:57 -0700559
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100560 <testResources>
561 <testResource>
562 <directory>src/test/resources</directory>
563 <excludes>
564 <exclude>**/*.jks</exclude>
Determe, Sebastien (sd378r)20296242018-03-12 19:37:34 +0100565 <exclude>**/*.csar</exclude>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100566 </excludes>
567 <filtering>true</filtering>
568 </testResource>
569 <testResource>
570 <directory>src/test/resources/https</directory>
571 <includes>
572 <include>**.jks</include>
573 </includes>
574 <filtering>false</filtering>
575 <targetPath>https</targetPath>
576 </testResource>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200577 <testResource>
Determe, Sebastien (sd378r)20296242018-03-12 19:37:34 +0100578 <directory>src/test/resources/example/sdc</directory>
579 <includes>
580 <include>**.csar</include>
581 </includes>
582 <filtering>false</filtering>
583 <targetPath>example/sdc</targetPath>
584 </testResource>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100585 </testResources>
586 <resources>
587 <resource>
588 <directory>src/main/resources</directory>
589 <filtering>true</filtering>
590 </resource>
591 <resource>
592 <directory>src/main/docker</directory>
593 <includes>
594 <include>**/*</include>
595 </includes>
596 <filtering>true</filtering>
597 </resource>
598 </resources>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -0700599
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100600 <plugins>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200601 <!-- Scan Clamp code and generate the swagger.json file with all the
602 APIs -->
Determe, Sebastien (sd378r)133d2e52018-05-24 15:56:29 +0200603 <plugin>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200604 <groupId>com.sebastian-daschner</groupId>
605 <artifactId>jaxrs-analyzer-maven-plugin</artifactId>
606 <version>0.14</version>
607 <executions>
608 <execution>
609 <phase>test</phase>
610 <goals>
611 <goal>analyze-jaxrs</goal>
612 </goals>
613 <configuration>
614 <backend>swagger</backend>
615 <resourcesDir>../docs/swagger/</resourcesDir>
616 </configuration>
617 </execution>
618 </executions>
619 </plugin>
Determe, Sebastien (sd378r)73803ec2018-05-24 17:52:25 +0200620
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200621 <!-- Read the swagger.json file and the definition from SwaggerConfig.java;
622 generate a list of .adoc files containing the APIs info in more structured
623 way -->
624 <plugin>
625 <groupId>io.github.swagger2markup</groupId>
626 <artifactId>swagger2markup-maven-plugin</artifactId>
627 <version>1.3.1</version>
628 <dependencies>
629 <dependency>
630 <groupId>io.github.swagger2markup</groupId>
631 <artifactId>swagger2markup-import-files-ext</artifactId>
632 <version>1.3.1</version>
633 </dependency>
634 <dependency>
635 <groupId>io.github.swagger2markup</groupId>
636 <artifactId>swagger2markup-spring-restdocs-ext</artifactId>
637 <version>1.3.1</version>
638 </dependency>
639 </dependencies>
xg353y2aad6d62018-05-18 17:59:06 +0200640 <configuration>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200641 <swaggerInput>${project.basedir}/docs/swagger/swagger.json</swaggerInput>
642 <outputDir>${project.build.directory}/asciidoc/generated</outputDir>
643 <config>
644 <swagger2markup.markupLanguage>ASCIIDOC</swagger2markup.markupLanguage>
645 </config>
xg353y2aad6d62018-05-18 17:59:06 +0200646 </configuration>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200647 <executions>
648 <execution>
649 <phase>test</phase>
650 <goals>
651 <goal>convertSwagger2markup</goal>
652 </goals>
653 </execution>
654 </executions>
655 </plugin>
xg353y2aad6d62018-05-18 17:59:06 +0200656
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200657 <!-- Run the generated asciidoc through Asciidoctor to generate other
658 documentation types, such as PDFs or HTML5 -->
659 <plugin>
xg353y2aad6d62018-05-18 17:59:06 +0200660 <groupId>org.asciidoctor</groupId>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200661 <artifactId>asciidoctor-maven-plugin</artifactId>
662 <version>1.5.3</version>
663 <dependencies>
664 <dependency>
665 <groupId>org.asciidoctor</groupId>
666 <artifactId>asciidoctorj-pdf</artifactId>
667 <version>1.5.0-alpha.10.1</version>
668 </dependency>
669 <dependency>
670 <groupId>org.jruby</groupId>
671 <artifactId>jruby-complete</artifactId>
672 <version>1.7.21</version>
673 </dependency>
674 </dependencies>
675 <configuration>
676 <sourceDirectory>${project.basedir}/src/main/resources/asciidoc</sourceDirectory>
677 <sourceDocumentName>swagger.adoc</sourceDocumentName>
678 <attributes>
679 <doctype>book</doctype>
680 <toc>left</toc>
681 <toclevels>3</toclevels>
682 <numbered></numbered>
683 <hardbreaks></hardbreaks>
684 <sectlinks></sectlinks>
685 <sectanchors></sectanchors>
686 <generated>${project.build.directory}/asciidoc/generated</generated>
687 </attributes>
688 </configuration>
xg353y2aad6d62018-05-18 17:59:06 +0200689
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200690 <executions>
691 <execution>
692 <id>output-html</id>
693 <phase>test</phase>
694 <goals>
695 <goal>process-asciidoc</goal>
696 </goals>
697 <configuration>
698 <backend>html5</backend>
699 <outputDirectory>${project.basedir}/docs/swagger</outputDirectory>
700 <outputDirectory>${project.basedir}/src/main/resources/META-INF/resources/</outputDirectory>
701 </configuration>
702 </execution>
703 <execution>
704 <id>output-pdf</id>
705 <phase>test</phase>
706 <goals>
707 <goal>process-asciidoc</goal>
708 </goals>
709 <configuration>
710 <backend>pdf</backend>
711 <outputDirectory>${project.basedir}/docs/swagger</outputDirectory>
712 </configuration>
713 </execution>
714 </executions>
715 </plugin>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100716 <plugin>
717 <groupId>org.codehaus.groovy.maven</groupId>
718 <artifactId>gmaven-plugin</artifactId>
719 <version>1.0</version>
720 <executions>
721 <execution>
722 <phase>validate</phase>
723 <goals>
724 <goal>execute</goal>
725 </goals>
726 <configuration>
727 <source>${project.basedir}/src/main/script/TagVersion.groovy</source>
728 </configuration>
729 </execution>
730 </executions>
731 </plugin>
732 <plugin>
733 <groupId>org.apache.maven.plugins</groupId>
734 <artifactId>maven-jar-plugin</artifactId>
735 <version>3.0.2</version>
736 <executions>
737 <execution>
738 <id>jar-with-only-classes</id>
739 <phase>package</phase>
740 <goals>
741 <goal>jar</goal>
742 </goals>
743 <configuration>
744 <classifier>classes</classifier>
745 <includes>
746 <include>org/**</include>
747 </includes>
748 </configuration>
749 </execution>
750 </executions>
751 </plugin>
752 <plugin>
753 <groupId>org.codehaus.mojo</groupId>
754 <artifactId>build-helper-maven-plugin</artifactId>
755 <version>3.0.0</version>
756 <executions>
757 <execution>
758 <goals>
759 <goal>attach-artifact</goal>
760 </goals>
761 <phase>package</phase>
762 <configuration>
763 <artifacts>
764 <artifact>
765 <file>${project.build.directory}/clamp-classes.jar</file>
766 <type>jar</type>
767 <classifier>classes</classifier>
768 </artifact>
769 </artifacts>
770 </configuration>
771 </execution>
772 </executions>
773 </plugin>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -0700774
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100775 <plugin>
776 <groupId>org.springframework.boot</groupId>
777 <artifactId>spring-boot-maven-plugin</artifactId>
Determe, Sebastien (sd378r)7e44fa72018-02-07 10:11:30 +0100778 <version>${springboot.version}</version>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100779 <executions>
780 <execution>
781 <goals>
782 <goal>repackage</goal>
783 </goals>
784 <phase>package</phase>
785 </execution>
786 </executions>
787 </plugin>
788 <plugin>
789 <groupId>org.sonatype.plugins</groupId>
790 <artifactId>nexus-staging-maven-plugin</artifactId>
791 <version>1.6.7</version>
792 <extensions>true</extensions>
793 <configuration>
794 <nexusUrl>https://nexus.onap.org</nexusUrl>
795 <stagingProfileId>176c31dfe190a</stagingProfileId>
796 <serverId>ecomp-staging</serverId>
797 <skipNexusStagingDeployMojo>${skip.staging.artifacts}</skipNexusStagingDeployMojo>
798 </configuration>
799 </plugin>
Determe, Sebastien (sd378r)26400da2018-05-24 16:57:30 +0200800
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100801 <plugin>
802 <groupId>org.apache.maven.plugins</groupId>
803 <artifactId>maven-surefire-plugin</artifactId>
804 <version>2.19.1</version>
805 <configuration>
806 <forkCount>1</forkCount>
807 <reuseForks>false</reuseForks>
808 </configuration>
809 </plugin>
Determe, Sebastien (sd378r)c06db6e2017-09-22 16:52:51 +0200810
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100811 <plugin>
812 <groupId>org.apache.maven.plugins</groupId>
813 <artifactId>maven-failsafe-plugin</artifactId>
814 <version>2.16</version>
ChrisC5e9feb22017-06-21 02:38:57 -0700815
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100816 <executions>
817 <execution>
818 <id>integration-tests</id>
819 <goals>
820 <goal>integration-test</goal>
821 <goal>verify</goal>
822 </goals>
823 <configuration>
824 <includes>
825 <include>**/*ItCase.java</include>
826 </includes>
827 <forkCount>1</forkCount>
828 <reuseForks>false</reuseForks>
829 </configuration>
830 </execution>
831 </executions>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100832 </plugin>
833 <plugin>
834 <groupId>io.fabric8</groupId>
835 <artifactId>docker-maven-plugin</artifactId>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200836 <version>0.26.0</version>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100837 <configuration>
838 <verbose>true</verbose>
839 <apiVersion>1.23</apiVersion>
840 <images>
841 <image>
842 <name>mariadb:10.1.11</name>
843 <alias>mariadb</alias>
844 <run>
845 <env>
846 <MYSQL_ROOT_PASSWORD>strong_pitchou</MYSQL_ROOT_PASSWORD>
847 </env>
848 <hostname>mariadb</hostname>
849 <volumes>
850 <bind>
851 <volume>${project.basedir}/extra/sql/:/docker-entrypoint-initdb.d</volume>
852 <volume>${project.basedir}/extra/docker/mariadb/conf1:/etc/mysql/conf.d</volume>
853 </bind>
854 </volumes>
855 <wait>
856 <log>socket: '/var/run/mysqld/mysqld.sock' port: 3306 mariadb.org binary distribution</log>
Determe, Sebastien (sd378r)b588fbc2018-02-13 17:25:12 +0100857 <time>600000</time>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100858 </wait>
859 <ports>
860 <port>${docker.mariadb.port.host}:3306</port>
861 </ports>
862 </run>
863 </image>
Determe, Sebastien (sd378r)7c083742018-02-14 15:31:55 +0100864 <image>
Determe, Sebastien (sd378r)465bfe22018-03-01 15:15:30 +0100865 <name>python:2-slim</name>
Determe, Sebastien (sd378r)7c083742018-02-14 15:31:55 +0100866 <alias>python</alias>
867 <run>
868 <hostname>python</hostname>
869 <volumes>
870 <bind>
871 <volume>${project.basedir}/src/test/resources/http-cache/:/usr/src/http-cache-app</volume>
ehautot153c8292018-03-15 17:49:50 +0100872 <volume>${project.basedir}/src/test/resources/http-cache/example/:/usr/src/http-cache-app/data-cache</volume>
Determe, Sebastien (sd378r)7c083742018-02-14 15:31:55 +0100873 </bind>
874 </volumes>
875 <wait>
876 <tcp>
877 <ports>
878 <port>8080</port>
879 </ports>
880 <mode>direct</mode>
881 </tcp>
882 <time>120000</time>
883 </wait>
884 <ports>
885 <port>${docker.http-cache.port.host}:8080</port>
886 </ports>
887 <workingDir>/usr/src/http-cache-app</workingDir>
888 <cmd>
Determe, Sebastien (sd378r)885d7c12018-04-09 17:56:53 +0200889 <shell>./start_http_cache.sh ${python.http.proxy.param} --python_proxyaddress=localhost:${docker.http-cache.port.host}</shell>
Determe, Sebastien (sd378r)7c083742018-02-14 15:31:55 +0100890 </cmd>
891 </run>
892 </image>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200893 <image>
894 <name>onap/clamp</name>
895 <alias>onap-clamp</alias>
896 <build>
897 <cleanup>true</cleanup>
898 <tags>
899 <tag>latest</tag>
900 <tag>${project.docker.latesttagtimestamp.version}</tag>
901 <tag>${project.docker.latesttag.version}</tag>
902 </tags>
903 <!-- A relative path is looked up in ${project.basedir}/src/main/docker by default -->
904 <dockerFile>Dockerfile</dockerFile>
905 <assembly>
906 <descriptor>assembly/clamp-files.xml</descriptor>
907 <name>onap-clamp</name>
908 </assembly>
909 </build>
910 </image>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100911 </images>
912 <skip>${skipITs}</skip>
913 </configuration>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100914 <executions>
915 <execution>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200916 <id>generate-images</id>
917 <phase>install</phase>
918 <goals>
919 <goal>build</goal>
920 </goals>
921 <configuration>
Determe, Sebastien (sd378r)7a58af82018-06-06 13:47:21 +0200922 <images>
923 <image>
924 <alias>onap-clamp</alias>
925 </image>
926 </images>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200927 </configuration>
928 </execution>
929 <execution>
930 <id>push-images</id>
931 <phase>deploy</phase>
932 <goals>
933 <goal>push</goal>
934 </goals>
935 <configuration>
Determe, Sebastien (sd378r)7a58af82018-06-06 13:47:21 +0200936 <images>
937 <image>
938 <alias>onap-clamp</alias>
939 </image>
940 </images>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +0200941 </configuration>
942 </execution>
943 <execution>
Determe, Sebastien (sd378r)7c083742018-02-14 15:31:55 +0100944 <id>docker-start-for-it</id>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100945 <phase>pre-integration-test</phase>
946 <goals>
947 <goal>start</goal>
948 </goals>
949 <configuration>
950 <skip>${skipITs}</skip>
Determe, Sebastien (sd378r)7a58af82018-06-06 13:47:21 +0200951 <images>
952 <image>
953 <alias>mariadb</alias>
954 </image>
955 <image>
956 <alias>python</alias>
957 </image>
958 </images>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100959 </configuration>
960 </execution>
961 <execution>
Determe, Sebastien (sd378r)7c083742018-02-14 15:31:55 +0100962 <id>docker-stop-for-it</id>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100963 <phase>post-integration-test</phase>
964 <goals>
965 <goal>stop</goal>
966 </goals>
967 <configuration>
968 <skip>${skipITs}</skip>
Determe, Sebastien (sd378r)7a58af82018-06-06 13:47:21 +0200969 <images>
970 <image>
971 <alias>mariadb</alias>
972 </image>
973 <image>
974 <alias>python</alias>
975 </image>
976 </images>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100977 </configuration>
978 </execution>
979 </executions>
980 </plugin>
ChrisC5e9feb22017-06-21 02:38:57 -0700981
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100982 <plugin>
983 <groupId>org.jacoco</groupId>
984 <artifactId>jacoco-maven-plugin</artifactId>
985 <version>0.7.7.201606060606</version>
986 <configuration>
987 <dumpOnExit>true</dumpOnExit>
988 <includes>
989 <include>org.onap.clamp.*</include>
990 </includes>
991 </configuration>
992 <executions>
993 <execution>
994 <id>pre-unit-test</id>
995 <goals>
996 <goal>prepare-agent</goal>
997 </goals>
998 <configuration>
999 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
1000 <!-- <append>true</append> -->
1001 </configuration>
1002 </execution>
1003 <execution>
1004 <id>pre-integration-test</id>
1005 <phase>pre-integration-test</phase>
1006 <goals>
1007 <goal>prepare-agent</goal>
1008 </goals>
1009 <configuration>
1010 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
1011 <!-- <append>true</append> -->
1012 </configuration>
1013 </execution>
1014 <execution>
1015 <goals>
1016 <goal>merge</goal>
1017 </goals>
1018 <phase>post-integration-test</phase>
1019 <configuration>
1020 <fileSets>
1021 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
1022 <directory>${project.build.directory}/coverage-reports</directory>
1023 <includes>
1024 <include>*.exec</include>
1025 </includes>
1026 </fileSet>
1027 </fileSets>
1028 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
1029 </configuration>
1030 </execution>
1031 </executions>
1032 </plugin>
ChrisC5e9feb22017-06-21 02:38:57 -07001033
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +01001034 <!-- This plugin will be useful when we will have multi-modules project -->
1035 <plugin>
1036 <groupId>org.codehaus.mojo</groupId>
1037 <artifactId>versions-maven-plugin</artifactId>
1038 <version>1.3.1</version>
1039 </plugin>
1040 </plugins>
1041 </build>
1042 <profiles>
1043 <profile>
1044 <id>docker</id>
1045 <properties>
1046 <skip.staging.artifacts>true</skip.staging.artifacts>
Determe, Sebastien (sd378r)e0d94f62018-05-25 15:14:08 +02001047 <docker.skip.build>false</docker.skip.build>
1048 <docker.skip.tag>false</docker.skip.tag>
1049 <docker.skip.push>false</docker.skip.push>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +01001050 </properties>
1051 </profile>
1052 </profiles>
ChrisC5e9feb22017-06-21 02:38:57 -07001053</project>