blob: c65216f623b8b1790230efee765e95e9f5251453 [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 ================================================================================
TedHumphrey4aedf732019-08-13 15:56:33 +00006 Copyright (C) 2017-2019 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-->
sebdet101193d2019-09-05 18:25:59 +020023<project xmlns="http://maven.apache.org/POM/4.0.0"
24 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25 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>
sebdetbd8a7bf2019-10-21 11:01:10 +020029 <version>4.2.0-SNAPSHOT</version>
sebdet101193d2019-09-05 18:25:59 +020030 <name>clamp</name>
ChrisC5e9feb22017-06-21 02:38:57 -070031
sebdeta5243a42019-06-13 13:48:04 +020032
sebdet101193d2019-09-05 18:25:59 +020033 <parent>
34 <groupId>org.onap.oparent</groupId>
35 <artifactId>oparent</artifactId>
sebdet715f0ac2019-11-07 15:03:18 +010036 <version>2.1.0</version>
sebdet101193d2019-09-05 18:25:59 +020037 </parent>
Determe, Sebastien (sd378r)a66fe452017-08-08 06:42:49 -070038
sebdet101193d2019-09-05 18:25:59 +020039 <description>
40 This is the MAVEN project that builds everything for ONAP CLAMP.
41 Docker engine is normally requires to perfom all possible tasks (including integration tests)
42
43 It can build:
44 - The ONAP CLAMP JAR that contains CLAMP back-end code.
45 - The DOCKER images for:
46 * CLAMP backend (Java Spring)
47 * CLAMP frontend (Javscript React)
48 * The dashboard - Elastic search
49 * The dashboard - Logstash
50 * The dashboard - Kibana
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -070051
sebdet101193d2019-09-05 18:25:59 +020052 It can test:
53 - The CLAMP backend, JAVA unit testing
54 - The CLAMP backend, JAVA integration tests (with Spring + docker mariadb database + docker policy/dcae emulator written in python)
55 - The CLAMP frontend, Javascrip tests (NodeJS(NPM) + JEST + Enzyme fro React)
56
57 The test coverage for dev's can be found after a "clean install" build in:
58 - Clamp backend: target/jacoco-dev.exec (unit tests + integration tests merged)
59 or separately target/coverage-reports/jacoco.exec and target/coverage-reports/jacoco-it.exec
60 - Clamp frontend: target/ui-react/coverage
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -070061
sebdet101193d2019-09-05 18:25:59 +020062 Useful mvn commands:
63 - mvn clean install: Build Clamp backend JAR + unit tests + integration tests + NPM tests (+coverage for all)
64 - mvn clean install -DskipITs=true: Build Clamp backend JAR + unit tests + NPM tests (+coverage for all), it does not require a DOCKER engine
65 - mvn clean install -DskipTests -P docker: Build Clamp backend JAR + all docker images
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -070066
sebdet101193d2019-09-05 18:25:59 +020067 To start CLAMP (Build it before):
68 - Use docker-compose file in ./extra/docker/clamp/docker-compose.yml
69 - Use the script located in ./extra/bin/start-backend.sh + start-frontend.sh
70 - Use your IDE to use the Jar or start NVM/NPM
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -070071
sebdet101193d2019-09-05 18:25:59 +020072 </description>
ChrisCae04cf32018-02-05 05:21:59 -080073
sebdet101193d2019-09-05 18:25:59 +020074 <properties>
75 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
76 <clamp.project.version>${project.version}</clamp.project.version>
77 <clamp.build.timestamp>${maven.build.timestamp}</clamp.build.timestamp>
sebdet101193d2019-09-05 18:25:59 +020078 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
79 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -070080
sebdet101193d2019-09-05 18:25:59 +020081 <eelf.core.version>1.0.0</eelf.core.version>
82 <camel.version>2.24.0</camel.version>
sebdet1b6a4282019-11-05 13:44:53 +010083 <springboot.version>2.2.0.RELEASE</springboot.version>
Determe, Sebastien (sd378r)8bf33432017-08-08 02:49:33 -070084
sebdet101193d2019-09-05 18:25:59 +020085 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
86 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
ChrisC4c4c3fd2020-01-27 14:54:56 +010087 <!-- The value below comes from the jacoco maven plugin output, sonar now takes xml only -->
88 <sonar.coverage.jacoco.xmlReportPaths>${project.build.directory}/jacoco-html-xml-reports/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
sebdetf332e2e2020-01-24 13:49:49 +010089 <!-- <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
90 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath> -->
sebdet101193d2019-09-05 18:25:59 +020091 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
92 <sonar.projectVersion>${project.version}</sonar.projectVersion>
93 <!-- Enable language to disable javascript analysis -->
94 <!-- <sonar.language>java</sonar.language> -->
95 <!-- Parameters for Javascript coverage -->
ChrisC83ad93c2020-01-27 17:26:24 +010096 <sonar.sources>.</sonar.sources>
97 <sonar.inclusions>src/main/**,${project.build.directory}/${ui.react.src}/src/**</sonar.inclusions>
sebdet156d6ea2019-09-06 15:52:18 +020098 <sonar.exclusions>src/main/resources/**</sonar.exclusions>
ChrisC83ad93c2020-01-27 17:26:24 +010099 <sonar.scm.exclusions.disabled>true</sonar.scm.exclusions.disabled>
100 <sonar.javascript.lcov.reportPaths>${project.build.directory}/${ui.react.src}/coverage/lcov.info</sonar.javascript.lcov.reportPaths>
xuegao4e2db352019-10-21 13:07:49 +0200101 <sonar.coverage.exclusions>src/main/resources/**,target/ui-react/src/**/*.test.js,target/ui-react/src/setupTests.js,src/main/docker/kibana/*.py</sonar.coverage.exclusions>
sebdet101193d2019-09-05 18:25:59 +0200102 <docker.push.registry>localhost:5000</docker.push.registry>
103 <docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry>
104 <docker.skip.build>true</docker.skip.build>
105 <docker.skip.push>true</docker.skip.push>
106 <docker.skip.tag>true</docker.skip.tag>
107 <skip.staging.artifacts>false</skip.staging.artifacts>
108 <python.http.proxy.param />
sebdet1b6a4282019-11-05 13:44:53 +0100109 <tomcat.version>9.0.27</tomcat.version>
sebdet101193d2019-09-05 18:25:59 +0200110 <ui.react.src>ui-react</ui.react.src>
sebdet6b214fe2019-10-24 10:37:58 +0200111 <npm.publish.url>https://nexus3.onap.org/repository/npm.release/</npm.publish.url>
sebdet101193d2019-09-05 18:25:59 +0200112 </properties>
ChrisC5e9feb22017-06-21 02:38:57 -0700113
sebdet101193d2019-09-05 18:25:59 +0200114 <profiles>
115 <profile>
116 <id>without-test</id>
117 <activation>
118 <property>
119 <name>maven.test.skip</name>
120 <value>true</value>
121 </property>
122 </activation>
123 <properties>
124 <docker.skip.run>true</docker.skip.run>
125 <docker.skip>true</docker.skip>
126 </properties>
127 </profile>
128 <profile>
129 <id>without-IT-only</id>
130 <activation>
131 <property>
132 <name>skipITs</name>
133 <value>true</value>
134 </property>
135 </activation>
136 <properties>
137 <docker.skip.run>true</docker.skip.run>
138 <docker.skip>true</docker.skip>
139 </properties>
140 </profile>
141 <profile>
142 <id>without-IT-only2</id>
143 <activation>
144 <property>
145 <name>skipTests</name>
146 <value>true</value>
147 </property>
148 </activation>
149 <properties>
150 <docker.skip.run>true</docker.skip.run>
151 <docker.skip>true</docker.skip>
152 </properties>
153 </profile>
154 <profile>
155 <id>docker</id>
156 <properties>
157 <skip.staging.artifacts>true</skip.staging.artifacts>
158 <docker.skip.build>false</docker.skip.build>
159 <docker.skip.tag>false</docker.skip.tag>
160 <docker.skip.push>false</docker.skip.push>
161 <docker.skip>false</docker.skip>
162 </properties>
163 </profile>
164 </profiles>
Determe, Sebastien (sd378r)d3428d82018-06-26 15:05:55 +0200165
sebdet101193d2019-09-05 18:25:59 +0200166 <distributionManagement>
167 <repository>
168 <id>ecomp-releases</id>
169 <name>Clamp Release Repository</name>
170 <url>https://nexus.onap.org/content/repositories/releases/</url>
171 </repository>
172 <snapshotRepository>
173 <id>ecomp-snapshots</id>
174 <name>Clamp Snapshot Repository</name>
175 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
176 </snapshotRepository>
177 <site>
178 <id>ecomp-site</id>
179 <url>dav:https://nexus.onap.org/content/sites/site/org/onap/clamp/${project.version}</url>
180 </site>
181 </distributionManagement>
ChrisC5e9feb22017-06-21 02:38:57 -0700182
sebdet101193d2019-09-05 18:25:59 +0200183 <repositories>
184 <repository>
185 <id>onap-public</id>
186 <name>onap-public</name>
187 <url>https://nexus.onap.org/content/repositories/public/</url>
188 <releases>
189 <enabled>true</enabled>
190 </releases>
191 <snapshots>
192 <enabled>false</enabled>
193 </snapshots>
194 </repository>
195 <repository>
196 <id>ecomp-releases</id>
197 <name>ONAP Release Repository</name>
198 <url>https://nexus.onap.org/content/repositories/releases/</url>
199 </repository>
200 <repository>
201 <id>ecomp-staging</id>
202 <name>ONAP Staging Repository</name>
203 <url>https://nexus.onap.org/content/repositories/staging/</url>
204 </repository>
205 <repository>
206 <id>ecomp-snapshots</id>
207 <name>ONAP Snapshot Repository</name>
208 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
209 <snapshots>
210 <enabled>true</enabled>
211 </snapshots>
212 <releases>
213 <enabled>false</enabled>
214 </releases>
215 </repository>
216 <repository>
217 <id>central</id>
218 <url>http://repo1.maven.org/maven2/</url>
219 </repository>
220 </repositories>
221 <pluginRepositories>
222 <pluginRepository>
223 <id>onap-public</id>
224 <name>onap-public</name>
225 <url>https://nexus.onap.org/content/repositories/public/</url>
226 <releases>
227 <enabled>true</enabled>
228 </releases>
229 <snapshots>
230 <enabled>false</enabled>
231 </snapshots>
232 </pluginRepository>
233 <pluginRepository>
234 <id>central</id>
235 <url>http://repo1.maven.org/maven2/</url>
236 </pluginRepository>
237 </pluginRepositories>
ChrisC5e9feb22017-06-21 02:38:57 -0700238
sebdet101193d2019-09-05 18:25:59 +0200239 <dependencyManagement>
Determe, Sebastien (sd378r)b4f7cb62017-11-16 13:27:22 +0100240 <dependencies>
sebdet101193d2019-09-05 18:25:59 +0200241 <!-- Spring Boot BOM -->
Piotr Darosz6eb37422019-03-08 14:50:29 +0100242 <dependency>
sebdet101193d2019-09-05 18:25:59 +0200243 <groupId>org.springframework.boot</groupId>
244 <artifactId>spring-boot-dependencies</artifactId>
245 <version>${springboot.version}</version>
246 <type>pom</type>
247 <scope>import</scope>
Piotr Darosz6eb37422019-03-08 14:50:29 +0100248 </dependency>
sebdet101193d2019-09-05 18:25:59 +0200249 <!-- Camel BOM -->
Piotr Darosz6eb37422019-03-08 14:50:29 +0100250 <dependency>
sebdet101193d2019-09-05 18:25:59 +0200251 <groupId>org.apache.camel</groupId>
252 <artifactId>camel-spring-boot-dependencies</artifactId>
253 <version>${camel.version}</version>
254 <type>pom</type>
255 <scope>import</scope>
Piotr Darosz6eb37422019-03-08 14:50:29 +0100256 </dependency>
sebdet101193d2019-09-05 18:25:59 +0200257 </dependencies>
258 </dependencyManagement>
259
260 <dependencies>
261 <dependency>
262 <groupId>org.apache.xmlgraphics</groupId>
263 <artifactId>batik-svggen</artifactId>
264 <version>1.11</version>
nrpandya82561262019-11-21 11:51:18 -0600265 <exclusions>
266 <exclusion>
267 <groupId>xml-apis</groupId>
268 <artifactId>xml-apis</artifactId>
269 </exclusion>
270 </exclusions>
sebdet101193d2019-09-05 18:25:59 +0200271 </dependency>
272 <dependency>
273 <groupId>org.apache.xmlgraphics</groupId>
274 <artifactId>batik-svg-dom</artifactId>
275 <version>1.11</version>
276 </dependency>
277 <dependency>
278 <groupId>org.apache.xmlgraphics</groupId>
279 <artifactId>batik-transcoder</artifactId>
280 <version>1.11</version>
281 </dependency>
282 <dependency>
283 <groupId>com.att.eelf</groupId>
284 <artifactId>eelf-core</artifactId>
285 <version>${eelf.core.version}</version>
sebdet1b6a4282019-11-05 13:44:53 +0100286 <exclusions>
287 <exclusion>
288 <groupId>org.powermock</groupId>
289 <artifactId>powermock-module-junit4</artifactId>
290 </exclusion>
291 <exclusion>
292 <groupId>org.powermock</groupId>
293 <artifactId>powermock-api-mockito</artifactId>
294 </exclusion>
295 </exclusions>
sebdet101193d2019-09-05 18:25:59 +0200296 </dependency>
297 <dependency>
298 <groupId>org.codehaus.janino</groupId>
299 <artifactId>janino</artifactId>
300 <version>3.0.8</version>
301 </dependency>
302 <dependency>
303 <groupId>org.apache.tomcat.embed</groupId>
304 <artifactId>tomcat-embed-core</artifactId>
305 <version>${tomcat.version}</version>
306 </dependency>
307 <dependency>
308 <groupId>org.apache.tomcat.embed</groupId>
309 <artifactId>tomcat-embed-el</artifactId>
310 <version>${tomcat.version}</version>
311 </dependency>
312 <dependency>
313 <groupId>org.apache.tomcat.embed</groupId>
314 <artifactId>tomcat-embed-websocket</artifactId>
315 <version>${tomcat.version}</version>
316 </dependency>
317 <dependency>
318 <groupId>org.apache.tomcat</groupId>
319 <artifactId>tomcat-annotations-api</artifactId>
320 <version>${tomcat.version}</version>
321 </dependency>
322 <!-- For CAMEL -->
323 <dependency>
324 <groupId>org.apache.camel</groupId>
325 <artifactId>camel-http4-starter</artifactId>
326 </dependency>
327 <dependency>
328 <groupId>org.apache.camel</groupId>
329 <artifactId>camel-spring-boot-starter</artifactId>
330 </dependency>
331 <dependency>
332 <groupId>org.apache.camel</groupId>
333 <artifactId>camel-jaxb-starter</artifactId>
334 </dependency>
335 <dependency>
336 <groupId>org.apache.camel</groupId>
337 <artifactId>camel-servlet-starter</artifactId>
338 </dependency>
339 <dependency>
340 <groupId>org.apache.camel</groupId>
341 <artifactId>camel-gson-starter</artifactId>
342 </dependency>
343 <dependency>
344 <groupId>org.apache.camel</groupId>
345 <artifactId>camel-swagger-java-starter</artifactId>
346 <exclusions>
347 <exclusion>
348 <groupId>javax.ws.rs</groupId>
349 <artifactId>jsr311-api</artifactId>
350 </exclusion>
351 <exclusion>
352 <groupId>org.slf4j</groupId>
353 <artifactId>slf4j-ext</artifactId>
354 </exclusion>
355 <exclusion>
356 <groupId>com.fasterxml.jackson.core</groupId>
357 <artifactId>jackson-databind</artifactId>
358 </exclusion>
359 </exclusions>
360 </dependency>
361 <dependency>
362 <groupId>javax.xml.bind</groupId>
363 <artifactId>jaxb-api</artifactId>
364 <version>2.3.0</version>
365 </dependency>
366 <dependency>
367 <groupId>org.glassfish.jersey.core</groupId>
368 <artifactId>jersey-common</artifactId>
369 <version>2.27</version>
370 </dependency>
371 <!-- Spring famework -->
372 <dependency>
373 <groupId>org.springframework.boot</groupId>
374 <artifactId>spring-boot-starter-web</artifactId>
375 <exclusions>
376 <exclusion>
377 <groupId>org.springframework.boot</groupId>
378 <artifactId>spring-boot-starter-json</artifactId>
379 </exclusion>
380 </exclusions>
381 </dependency>
382 <dependency>
383 <groupId>org.springframework.boot</groupId>
384 <artifactId>spring-boot-starter-tomcat</artifactId>
385 </dependency>
386 <dependency>
387 <groupId>org.springframework</groupId>
388 <artifactId>spring-jdbc</artifactId>
389 </dependency>
390 <dependency>
391 <groupId>org.springframework.boot</groupId>
392 <artifactId>spring-boot-starter-security</artifactId>
393 </dependency>
394 <dependency>
395 <groupId>org.springframework.boot</groupId>
396 <artifactId>spring-boot-autoconfigure</artifactId>
397 </dependency>
398 <dependency>
399 <groupId>org.springframework.boot</groupId>
400 <artifactId>spring-boot-starter-test</artifactId>
401 <scope>test</scope>
402 <exclusions>
403 <exclusion>
404 <groupId>com.vaadin.external.google</groupId>
405 <artifactId>android-json</artifactId>
406 </exclusion>
407 </exclusions>
408 </dependency>
409 <dependency>
410 <groupId>org.springframework.boot</groupId>
411 <artifactId>spring-boot-starter-data-jpa</artifactId>
412 </dependency>
413 <!-- Others dependencies -->
414 <dependency>
415 <groupId>org.onap.aaf.authz</groupId>
416 <artifactId>aaf-cadi-aaf</artifactId>
sebdetdcc4bdc2019-10-15 14:04:00 +0200417 <version>2.1.15</version>
sebdet101193d2019-09-05 18:25:59 +0200418 <exclusions>
419 <exclusion>
420 <groupId>javax.servlet</groupId>
421 <artifactId>servlet-api</artifactId>
422 </exclusion>
423 </exclusions>
424 </dependency>
425 <dependency>
426 <groupId>ch.qos.logback</groupId>
427 <artifactId>logback-core</artifactId>
428 <version>1.2.3</version>
429 </dependency>
430 <dependency>
431 <groupId>ch.qos.logback</groupId>
432 <artifactId>logback-classic</artifactId>
433 <version>1.2.3</version>
434 </dependency>
435 <dependency>
436 <groupId>commons-dbcp</groupId>
437 <artifactId>commons-dbcp</artifactId>
438 <version>1.4</version>
439 </dependency>
440 <dependency>
441 <groupId>commons-io</groupId>
442 <artifactId>commons-io</artifactId>
443 <version>2.6</version>
444 </dependency>
445 <dependency>
446 <groupId>com.googlecode.json-simple</groupId>
447 <artifactId>json-simple</artifactId>
448 <version>1.1.1</version>
449 </dependency>
450 <dependency>
451 <groupId>org.apache.commons</groupId>
452 <artifactId>commons-vfs2</artifactId>
453 <version>2.2</version>
454 </dependency>
455 <dependency>
456 <groupId>joda-time</groupId>
457 <artifactId>joda-time</artifactId>
458 </dependency>
459 <dependency>
460 <groupId>org.slf4j</groupId>
461 <artifactId>slf4j-api</artifactId>
462 </dependency>
463 <dependency>
464 <groupId>javax.ws.rs</groupId>
465 <artifactId>javax.ws.rs-api</artifactId>
466 <version>2.0</version>
467 </dependency>
468 <dependency>
469 <groupId>junit</groupId>
470 <artifactId>junit</artifactId>
471 </dependency>
472 <dependency>
473 <groupId>javax.transaction</groupId>
474 <artifactId>jta</artifactId>
475 <version>1.1</version>
476 </dependency>
477 <dependency>
478 <groupId>javax.persistence</groupId>
479 <artifactId>persistence-api</artifactId>
480 <version>1.0.2</version>
481 </dependency>
482 <dependency>
sebdet101193d2019-09-05 18:25:59 +0200483 <groupId>org.apache.commons</groupId>
484 <artifactId>commons-csv</artifactId>
485 <version>1.3</version>
486 </dependency>
487 <!-- Other dependencies to fix nexus IQ reported vulnerabilities -->
488 <dependency>
489 <groupId>org.codehaus.plexus</groupId>
490 <artifactId>plexus-utils</artifactId>
491 <version>3.0.24</version>
492 </dependency>
493 <dependency>
494 <groupId>org.jboss.spec.javax.ws.rs</groupId>
495 <artifactId>jboss-jaxrs-api_2.0_spec</artifactId>
496 <version>1.0.1.Final</version>
497 </dependency>
498 <dependency>
499 <groupId>com.google.guava</groupId>
500 <artifactId>guava</artifactId>
501 <version>27.0-jre</version>
502 </dependency>
sebdete77e0ff2019-09-09 13:18:35 +0200503 <dependency>
504 <groupId>commons-codec</groupId>
505 <artifactId>commons-codec</artifactId>
506 <version>1.13</version>
507 </dependency>
sebdet101193d2019-09-05 18:25:59 +0200508 <!-- Remove the MYSQL connector and replace it by Mariadb -->
509 <dependency>
510 <groupId>org.mariadb.jdbc</groupId>
511 <artifactId>mariadb-java-client</artifactId>
512 <version>2.2.1</version>
513 </dependency>
514 <!-- For SDC Controller -->
515 <dependency>
516 <groupId>org.onap.sdc.sdc-distribution-client</groupId>
517 <artifactId>sdc-distribution-client</artifactId>
518 <version>1.3.0</version>
519 </dependency>
520 <dependency>
521 <groupId>org.onap.sdc.sdc-tosca</groupId>
522 <artifactId>sdc-tosca</artifactId>
523 <version>1.5.1</version>
524 </dependency>
525 <!-- TESTING -->
526 <dependency>
527 <groupId>org.assertj</groupId>
528 <artifactId>assertj-core</artifactId>
529 <version>3.10.0</version>
530 <scope>test</scope>
531 </dependency>
532 <dependency>
533 <groupId>org.mockito</groupId>
534 <artifactId>mockito-core</artifactId>
sebdet1b6a4282019-11-05 13:44:53 +0100535 <version>2.28.2</version>
536 <scope>test</scope>
537 </dependency>
538 <dependency>
539 <groupId>org.powermock</groupId>
540 <artifactId>powermock-api-mockito2</artifactId>
541 <version>2.0.4</version>
542 <scope>test</scope>
543 </dependency>
544 <dependency>
545 <groupId>org.powermock</groupId>
546 <artifactId>powermock-module-junit4</artifactId>
547 <version>2.0.4</version>
sebdet101193d2019-09-05 18:25:59 +0200548 <scope>test</scope>
549 </dependency>
550 </dependencies>
551
552 <build>
553 <finalName>clamp</finalName>
554
555 <testResources>
556 <testResource>
557 <directory>src/test/resources</directory>
558 <excludes>
559 <exclude>**/*.jks</exclude>
560 <exclude>**/*.csar</exclude>
561 </excludes>
562 <filtering>true</filtering>
563 </testResource>
564 <testResource>
565 <directory>src/test/resources/https</directory>
566 <includes>
567 <include>**.jks</include>
568 </includes>
569 <filtering>false</filtering>
570 <targetPath>https</targetPath>
571 </testResource>
572 <testResource>
573 <directory>src/test/resources/example/sdc</directory>
574 <includes>
575 <include>**.csar</include>
576 </includes>
577 <filtering>false</filtering>
578 <targetPath>example/sdc</targetPath>
579 </testResource>
580 </testResources>
581 <resources>
582 <!-- For AAF folder maven should not try to filter Keystores/Truststores ... Otherwise
583 they will be broken and unreadable -->
584 <resource>
585 <directory>src/main/resources</directory>
586 <filtering>true</filtering>
587 <excludes>
588 <exclude>clds/aaf/**</exclude>
589 </excludes>
590 </resource>
591 <resource>
592 <directory>src/main/resources</directory>
593 <filtering>false</filtering>
594 <includes>
595 <include>clds/aaf/**</include>
596 </includes>
597 </resource>
598 <resource>
599 <directory>${ui.react.src}</directory>
600 <includes>
601 <include>src/**</include>
602 <include>public/**</include>
603 <include>package.json</include>
604 <include>package-lock.json</include>
605 </includes>
606 <filtering>true</filtering>
607 <targetPath>${project.build.directory}/${ui.react.src}</targetPath>
608 </resource>
609 </resources>
610
611 <plugins>
612 <plugin>
nrpandya82561262019-11-21 11:51:18 -0600613 <groupId>de.jpdigital</groupId>
614 <artifactId>hibernate52-ddl-maven-plugin</artifactId>
615 <version>2.2.0</version>
sebdet101193d2019-09-05 18:25:59 +0200616 <dependencies>
617 <dependency>
Determe, Sebastien (sd378r)f7855162018-04-27 14:02:39 +0200618 <groupId>javax.xml.bind</groupId>
619 <artifactId>jaxb-api</artifactId>
620 <version>2.3.0</version>
sebdet101193d2019-09-05 18:25:59 +0200621 </dependency>
622 </dependencies>
623 <executions>
624 <execution>
625 <phase>process-classes</phase>
626 <goals>
627 <goal>gen-ddl</goal>
628 </goals>
sebdete4422002018-10-16 17:47:54 +0200629 <configuration>
sebdet101193d2019-09-05 18:25:59 +0200630 <packages>
nrpandya82561262019-11-21 11:51:18 -0600631 <param>org.onap.clamp</param>
sebdet101193d2019-09-05 18:25:59 +0200632 </packages>
633 <dialects>
634 <param>MARIADB53</param>
635 </dialects>
636 <outputDirectory>${project.basedir}/extra/sql/bulkload/</outputDirectory>
637 <outputFileNameSuffix>create-tables</outputFileNameSuffix>
638 <!-- <createDropStatements>true</createDropStatements> -->
639 <omitDialectFromFileName>true</omitDialectFromFileName>
sebdete4422002018-10-16 17:47:54 +0200640 </configuration>
sebdet101193d2019-09-05 18:25:59 +0200641 </execution>
642 </executions>
643
644 </plugin>
645 <!-- Read the swagger.json file and the definition from SwaggerConfig.java; generate
646 a list of .adoc files containing the APIs info in more structured way -->
647 <plugin>
648 <groupId>io.github.swagger2markup</groupId>
649 <artifactId>swagger2markup-maven-plugin</artifactId>
650 <version>1.3.3</version>
651 <dependencies>
652 <dependency>
653 <groupId>io.github.swagger2markup</groupId>
654 <artifactId>swagger2markup-import-files-ext</artifactId>
655 <version>1.3.3</version>
656 </dependency>
657 <dependency>
658 <groupId>io.github.swagger2markup</groupId>
659 <artifactId>swagger2markup-spring-restdocs-ext</artifactId>
660 <version>1.3.3</version>
661 </dependency>
662 </dependencies>
663 <configuration>
664 <swaggerInput>${project.basedir}/docs/swagger/swagger.json</swaggerInput>
665 <outputDir>${project.build.directory}/asciidoc/generated</outputDir>
666 <config>
667 <swagger2markup.markupLanguage>ASCIIDOC</swagger2markup.markupLanguage>
668 </config>
669 </configuration>
670 <executions>
671 <execution>
672 <phase>post-integration-test</phase>
673 <goals>
674 <goal>convertSwagger2markup</goal>
675 </goals>
676 </execution>
677 </executions>
678 </plugin>
679
680 <!-- Run the generated asciidoc through Asciidoctor to generate other documentation
681 types, such as PDFs or HTML5 -->
682 <plugin>
683 <groupId>org.asciidoctor</groupId>
684 <artifactId>asciidoctor-maven-plugin</artifactId>
685 <version>1.5.7.1</version>
686 <dependencies>
687 <dependency>
688 <groupId>org.asciidoctor</groupId>
689 <artifactId>asciidoctorj-pdf</artifactId>
690 <version>1.5.0-alpha.10.1</version>
691 </dependency>
692 </dependencies>
693 <configuration>
694 <sourceDirectory>${project.basedir}/src/main/resources/asciidoc</sourceDirectory>
695 <sourceDocumentName>swagger.adoc</sourceDocumentName>
696 <attributes>
697 <doctype>book</doctype>
698 <toc>left</toc>
699 <toclevels>3</toclevels>
700 <numbered />
701 <hardbreaks />
702 <sectlinks />
703 <sectanchors />
704 <generated>${project.build.directory}/asciidoc/generated</generated>
705 </attributes>
706 </configuration>
707
708 <executions>
709 <execution>
710 <id>output-html</id>
711 <phase>post-integration-test</phase>
712 <goals>
713 <goal>process-asciidoc</goal>
714 </goals>
715 <configuration>
716 <backend>html5</backend>
717 <outputDirectory>${project.basedir}/docs/swagger</outputDirectory>
718 <outputDirectory>${project.basedir}/src/main/resources/META-INF/resources/</outputDirectory>
719 </configuration>
720 </execution>
721 <execution>
722 <id>output-pdf</id>
723 <phase>post-integration-test</phase>
724 <goals>
725 <goal>process-asciidoc</goal>
726 </goals>
727 <configuration>
728 <backend>pdf</backend>
729 <outputDirectory>${project.basedir}/docs/swagger</outputDirectory>
730 </configuration>
731 </execution>
732 </executions>
733 </plugin>
734 <plugin>
735 <groupId>org.codehaus.groovy.maven</groupId>
736 <artifactId>gmaven-plugin</artifactId>
737 <version>1.0</version>
738 <executions>
739 <execution>
740 <phase>validate</phase>
741 <goals>
742 <goal>execute</goal>
743 </goals>
744 <configuration>
745 <source>${project.basedir}/src/main/script/TagVersion.groovy</source>
746 </configuration>
747 </execution>
748 </executions>
749 </plugin>
750 <plugin>
sebdetc6622c42019-11-05 18:28:05 +0100751 <groupId>org.codehaus.groovy.maven</groupId>
752 <artifactId>gmaven-plugin</artifactId>
753 <version>1.0</version>
754 <executions>
755 <execution>
756 <phase>validate</phase>
757 <goals>
758 <goal>execute</goal>
759 </goals>
760 <configuration>
761 <source>${project.basedir}/src/main/script/SelectNpmRepo.groovy</source>
762 </configuration>
763 </execution>
764 </executions>
765 </plugin>
766 <plugin>
sebdet101193d2019-09-05 18:25:59 +0200767 <groupId>org.apache.maven.plugins</groupId>
768 <artifactId>maven-jar-plugin</artifactId>
769 <version>3.0.2</version>
770 <executions>
771 <execution>
772 <id>jar-with-only-classes</id>
773 <phase>package</phase>
774 <goals>
775 <goal>jar</goal>
776 </goals>
777 <configuration>
778 <classifier>classes</classifier>
779 <includes>
780 <include>org/**</include>
781 </includes>
782 </configuration>
783 </execution>
784 </executions>
785 </plugin>
786 <plugin>
787 <groupId>org.codehaus.mojo</groupId>
788 <artifactId>build-helper-maven-plugin</artifactId>
789 <version>3.0.0</version>
790 <executions>
791 <execution>
792 <goals>
793 <goal>attach-artifact</goal>
794 </goals>
795 <phase>package</phase>
796 <configuration>
797 <artifacts>
798 <artifact>
799 <file>${project.build.directory}/clamp-classes.jar</file>
800 <type>jar</type>
801 <classifier>classes</classifier>
802 </artifact>
803 </artifacts>
804 </configuration>
805 </execution>
806 <execution>
807 <id>reserve-port-for-tests</id>
808 <phase>process-resources</phase>
809 <goals>
810 <goal>reserve-network-port</goal>
811 </goals>
812 <configuration>
813 <portNames>
814 <portName>docker.mariadb.port.host</portName>
815 <portName>docker.http-cache.port.host</portName>
816 <portName>clamp.it.tests.http-redirected</portName>
817 <portName>clamp.it.tests.https</portName>
818 <portName>clamp.it.tests.http</portName>
819 </portNames>
820 </configuration>
821 </execution>
822 </executions>
823 </plugin>
824
825 <plugin>
826 <groupId>org.springframework.boot</groupId>
827 <artifactId>spring-boot-maven-plugin</artifactId>
828 <!-- Temporary fix -->
829 <version>1.5.13.RELEASE</version>
830 <!-- <version>${springboot.version}</version> -->
831 <executions>
832 <execution>
833 <goals>
834 <goal>repackage</goal>
835 </goals>
836 <phase>package</phase>
837 </execution>
838 </executions>
839 </plugin>
840 <plugin>
841 <groupId>org.apache.maven.plugins</groupId>
842 <artifactId>maven-surefire-plugin</artifactId>
sebdet1b6a4282019-11-05 13:44:53 +0100843 <version>2.22.2</version>
sebdet101193d2019-09-05 18:25:59 +0200844 <configuration>
845 <forkCount>1C</forkCount>
846 <reuseForks>true</reuseForks>
847 <useSystemClassLoader>false</useSystemClassLoader>
848 <argLine>${surefireArgLine}</argLine>
849 </configuration>
850 </plugin>
851
852 <plugin>
853 <groupId>org.apache.maven.plugins</groupId>
854 <artifactId>maven-failsafe-plugin</artifactId>
sebdet1b6a4282019-11-05 13:44:53 +0100855 <version>2.22.2</version>
sebdet101193d2019-09-05 18:25:59 +0200856 <executions>
857 <execution>
858 <id>integration-tests</id>
859 <goals>
860 <goal>integration-test</goal>
861 <goal>verify</goal>
862 </goals>
863 <configuration>
864 <additionalClasspathElements>
865 <additionalClasspathElement>${project.build.directory}/classes</additionalClasspathElement>
866 </additionalClasspathElements>
867 <includes>
868 <include>**/*ItCase.java</include>
869 </includes>
870 <forkCount>1</forkCount>
871 <reuseForks>true</reuseForks>
872 <useSystemClassLoader>false</useSystemClassLoader>
873 <argLine>${failsafeArgLine}</argLine>
874 </configuration>
875 </execution>
876 </executions>
sebdet101193d2019-09-05 18:25:59 +0200877 </plugin>
878 <plugin>
879 <groupId>io.fabric8</groupId>
880 <artifactId>docker-maven-plugin</artifactId>
sebdet1b6a4282019-11-05 13:44:53 +0100881 <version>0.31.0</version>
sebdet101193d2019-09-05 18:25:59 +0200882 <dependencies>
883 <dependency>
884 <groupId>org.apache.httpcomponents</groupId>
885 <artifactId>httpclient</artifactId>
886 <version>4.5.5</version>
887 </dependency>
888 </dependencies>
889 <configuration>
890 <verbose>true</verbose>
891 <apiVersion>1.35</apiVersion>
892 <images>
893 <image>
894 <name>library/mariadb:10.3.12</name>
895 <alias>mariadb</alias>
896 <run>
897 <env>
898 <MYSQL_ROOT_PASSWORD>strong_pitchou</MYSQL_ROOT_PASSWORD>
899 </env>
900 <hostname>mariadb</hostname>
901 <volumes>
902 <bind>
sebdetfdfde212019-09-12 10:59:15 +0200903 <volume>${project.basedir}/extra/sql/:/docker-entrypoint-initdb.d:rw</volume>
sebdet101193d2019-09-05 18:25:59 +0200904 <volume>${project.basedir}/extra/docker/mariadb/conf1:/etc/mysql/conf.d</volume>
905 </bind>
906 </volumes>
907 <wait>
908 <log>socket: '/var/run/mysqld/mysqld.sock' port: 3306 mariadb.org binary distribution</log>
909 <time>600000</time>
sebdetfdfde212019-09-12 10:59:15 +0200910 <exec>
911 <preStop>/docker-entrypoint-initdb.d/dump/backup-data-only.sh</preStop>
912 </exec>
sebdet101193d2019-09-05 18:25:59 +0200913 </wait>
914 <ports>
915 <port>${docker.mariadb.port.host}:3306</port>
916 </ports>
sebdet1b6a4282019-11-05 13:44:53 +0100917 <network>
918 <mode>bridge</mode>
919 </network>
sebdet101193d2019-09-05 18:25:59 +0200920 </run>
921 </image>
922 <image>
923 <name>library/python:2-slim</name>
924 <alias>python</alias>
925 <run>
926 <hostname>python</hostname>
927 <volumes>
928 <bind>
929 <volume>${project.basedir}/src/test/resources/http-cache/:/usr/src/http-cache-app</volume>
930 <volume>${project.basedir}/src/test/resources/http-cache/example/:/usr/src/http-cache-app/data-cache</volume>
931 </bind>
932 </volumes>
933 <wait>
934 <tcp>
935 <ports>
936 <port>8080</port>
937 </ports>
938 <mode>direct</mode>
939 </tcp>
940 <time>120000</time>
941 </wait>
942 <ports>
943 <port>${docker.http-cache.port.host}:8080</port>
944 </ports>
945 <workingDir>/usr/src/http-cache-app</workingDir>
946 <cmd>
947 <shell>./start_http_cache.sh ${python.http.proxy.param}
948 --python_proxyaddress=localhost:${docker.http-cache.port.host}</shell>
949 </cmd>
sebdet1b6a4282019-11-05 13:44:53 +0100950 <network>
951 <mode>bridge</mode>
952 </network>
sebdet101193d2019-09-05 18:25:59 +0200953 </run>
954 </image>
955 <image>
956 <name>onap/clamp-backend</name>
957 <alias>onap-clamp-backend</alias>
958 <run>
959 <skip>true</skip>
960 </run>
961 <build>
962 <cleanup>true</cleanup>
963 <tags>
964 <tag>latest</tag>
965 <tag>${project.docker.latesttagtimestamp.version}</tag>
966 <tag>${project.docker.latesttag.version}</tag>
967 </tags>
968 <!-- A relative path is looked up in ${project.basedir}/src/main/docker by
969 default -->
970 <dockerFile>backend/Dockerfile</dockerFile>
971 <assembly>
972 <descriptor>backend/backend-files.xml</descriptor>
973 <name>onap-clamp-backend</name>
974 </assembly>
975 </build>
976 </image>
977 <image>
978 <name>onap/clamp-frontend</name>
979 <alias>onap-clamp-frontend</alias>
980 <run>
981 <skip>true</skip>
982 </run>
983 <build>
984 <cleanup>true</cleanup>
985 <tags>
986 <tag>latest</tag>
987 <tag>${project.docker.latesttagtimestamp.version}</tag>
988 <tag>${project.docker.latesttag.version}</tag>
989 </tags>
990 <!-- A relative path is looked up in ${project.basedir}/src/main/docker by
991 default -->
992 <dockerFile>frontend/Dockerfile</dockerFile>
993 <assembly>
994 <descriptor>frontend/frontend-files.xml</descriptor>
995 <name>onap-clamp-frontend</name>
996 </assembly>
997 </build>
998 </image>
999 <image>
sebdet101193d2019-09-05 18:25:59 +02001000 <name>onap/clamp-dashboard-logstash</name>
1001 <alias>onap-clamp-dashboard-logstash</alias>
1002 <run>
1003 <skip>true</skip>
1004 </run>
1005 <build>
1006 <cleanup>true</cleanup>
1007 <tags>
1008 <tag>latest</tag>
1009 <tag>${project.docker.latesttagtimestamp.version}</tag>
1010 <tag>${project.docker.latesttag.version}</tag>
1011 </tags>
1012 <dockerFile>logstash/Dockerfile</dockerFile>
1013 </build>
1014 </image>
1015 <image>
1016 <name>onap/clamp-dashboard-kibana</name>
1017 <alias>onap-clamp-dashboard-kibana</alias>
1018 <run>
1019 <skip>true</skip>
1020 </run>
1021 <build>
1022 <cleanup>true</cleanup>
1023 <tags>
1024 <tag>latest</tag>
1025 <tag>${project.docker.latesttagtimestamp.version}</tag>
1026 <tag>${project.docker.latesttag.version}</tag>
1027 </tags>
1028 <dockerFile>kibana/Dockerfile</dockerFile>
1029 </build>
1030 </image>
1031 </images>
1032 </configuration>
1033
1034 <executions>
1035 <execution>
1036 <id>generate-images</id>
1037 <phase>install</phase>
1038 <goals>
1039 <goal>build</goal>
1040 </goals>
1041 </execution>
1042 <execution>
1043 <id>push-images</id>
1044 <phase>deploy</phase>
1045 <goals>
1046 <goal>push</goal>
1047 </goals>
1048 </execution>
1049 <execution>
1050 <id>docker-start-for-it</id>
1051 <phase>pre-integration-test</phase>
1052 <goals>
1053 <goal>start</goal>
1054 </goals>
1055 </execution>
1056 <execution>
1057 <id>docker-stop-for-it</id>
1058 <phase>post-integration-test</phase>
1059 <goals>
1060 <goal>stop</goal>
1061 </goals>
1062 </execution>
1063 </executions>
1064 </plugin>
1065
1066 <plugin>
1067 <groupId>org.jacoco</groupId>
1068 <artifactId>jacoco-maven-plugin</artifactId>
sebdet1b6a4282019-11-05 13:44:53 +01001069 <version>0.8.5</version>
sebdet101193d2019-09-05 18:25:59 +02001070 <configuration>
1071 <dumpOnExit>true</dumpOnExit>
1072 <append>true</append>
1073 <includes>
ChrisC4c4c3fd2020-01-27 14:54:56 +01001074 <include>org/onap/clamp/**</include>
sebdet101193d2019-09-05 18:25:59 +02001075 </includes>
1076 </configuration>
1077 <executions>
1078 <execution>
1079 <id>pre-unit-test</id>
1080 <goals>
1081 <goal>prepare-agent</goal>
1082 </goals>
1083 <configuration>
1084 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
1085 <propertyName>surefireArgLine</propertyName>
1086 <!-- <append>true</append> -->
1087 </configuration>
1088 </execution>
1089 <execution>
1090 <id>pre-integration-test</id>
1091 <phase>pre-integration-test</phase>
1092 <goals>
1093 <goal>prepare-agent</goal>
1094 </goals>
1095 <configuration>
1096 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
1097 <propertyName>failsafeArgLine</propertyName>
1098 <!-- <append>true</append> -->
1099 </configuration>
1100 </execution>
1101 <execution>
1102 <goals>
1103 <goal>merge</goal>
1104 </goals>
1105 <phase>post-integration-test</phase>
1106 <configuration>
1107 <fileSets>
1108 <fileSet
1109 implementation="org.apache.maven.shared.model.fileset.FileSet">
1110 <directory>${project.build.directory}/coverage-reports</directory>
1111 <includes>
1112 <include>*.exec</include>
1113 </includes>
1114 </fileSet>
1115 </fileSets>
sebdetf332e2e2020-01-24 13:49:49 +01001116 <destFile>${project.build.directory}/jacoco.exec</destFile>
sebdet101193d2019-09-05 18:25:59 +02001117 </configuration>
1118 </execution>
sebdet749c0f12020-01-23 13:35:34 +01001119 <execution>
sebdetf332e2e2020-01-24 13:49:49 +01001120 <id>report-xml</id>
sebdet749c0f12020-01-23 13:35:34 +01001121 <goals>
1122 <goal>report</goal>
1123 </goals>
sebdet749c0f12020-01-23 13:35:34 +01001124 <configuration>
ChrisC4c4c3fd2020-01-27 14:54:56 +01001125 <!-- Setting explicit path, so that we remember where it picks them up from -->
1126 <dataFile>${project.build.directory}/jacoco.exec</dataFile>
1127 <outputDirectory>${project.build.directory}/jacoco-html-xml-reports</outputDirectory>
sebdet749c0f12020-01-23 13:35:34 +01001128 </configuration>
1129 </execution>
sebdet101193d2019-09-05 18:25:59 +02001130 </executions>
1131 </plugin>
1132
1133 <!-- This plugin will be useful when we will have multi-modules project -->
1134 <plugin>
1135 <groupId>org.codehaus.mojo</groupId>
1136 <artifactId>versions-maven-plugin</artifactId>
1137 <version>1.3.1</version>
1138 </plugin>
1139
1140 <plugin>
1141 <groupId>com.github.eirslett</groupId>
1142 <artifactId>frontend-maven-plugin</artifactId>
1143 <version>1.8.0</version>
1144 <configuration>
1145 <installDirectory>${project.build.directory}/${ui.react.src}</installDirectory>
1146 <workingDirectory>${project.build.directory}/${ui.react.src}</workingDirectory>
1147 </configuration>
1148 <executions>
1149 <execution>
1150 <id>install_node_and_npm</id>
1151 <goals>
1152 <goal>install-node-and-npm</goal>
1153 </goals>
1154 <phase>generate-sources</phase>
1155 <configuration>
sebdet81f5cab2019-11-06 11:40:46 +01001156 <nodeVersion>v12.13.0</nodeVersion>
1157 <npmVersion>6.13.0</npmVersion>
sebdet101193d2019-09-05 18:25:59 +02001158 </configuration>
1159 </execution>
1160 <execution>
1161 <id>npm_install</id>
1162 <goals>
1163 <goal>npm</goal>
1164 </goals>
1165 <phase>compile</phase>
1166 <configuration>
sebdet996071f2019-10-25 13:25:57 +02001167 <arguments>install</arguments>
sebdet101193d2019-09-05 18:25:59 +02001168 </configuration>
1169 </execution>
1170 <execution>
1171 <id>npm_test</id>
1172 <goals>
1173 <goal>npm</goal>
1174 </goals>
1175 <phase>test</phase>
1176 <configuration>
1177 <arguments>run-script test:coverage</arguments>
1178 </configuration>
1179 </execution>
1180 <execution>
1181 <id>npm_publish</id>
1182 <goals>
1183 <goal>npm</goal>
1184 </goals>
1185 <phase>deploy</phase>
1186 <configuration>
sebdetdd107682019-11-13 13:13:07 +01001187 <arguments>publish</arguments>
sebdet101193d2019-09-05 18:25:59 +02001188 </configuration>
1189 </execution>
1190 </executions>
1191 </plugin>
sebdet1b6a4282019-11-05 13:44:53 +01001192 <plugin>
1193 <groupId>org.apache.maven.plugins</groupId>
1194 <artifactId>maven-compiler-plugin</artifactId>
1195 <version>3.8.1</version>
1196 <configuration>
sebdete17bc1b2019-11-18 17:57:32 +01001197 <source>11</source>
1198 <target>11</target>
sebdet1b6a4282019-11-05 13:44:53 +01001199 </configuration>
1200 </plugin>
sebdetd07b6502019-11-08 13:49:44 +01001201 <plugin>
1202 <groupId>org.sonarsource.scanner.maven</groupId>
1203 <artifactId>sonar-maven-plugin</artifactId>
1204 <version>3.7.0.1746</version>
1205 </plugin>
sebdet101193d2019-09-05 18:25:59 +02001206 </plugins>
1207 </build>
ChrisC5e9feb22017-06-21 02:38:57 -07001208</project>