|
266 | 266 | </dependency> |
267 | 267 | </dependencies> |
268 | 268 |
|
269 | | - <distributionManagement> |
270 | | - <snapshotRepository> |
271 | | - <id>ossrh</id> |
272 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
273 | | - </snapshotRepository> |
274 | | - <repository> |
275 | | - <id>ossrh</id> |
276 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
277 | | - </repository> |
278 | | - </distributionManagement> |
279 | | - |
280 | | - <pluginRepositories> |
281 | | - <pluginRepository> |
282 | | - <id>eclipse.virgo.build.bundles.release</id> |
283 | | - <name>Eclipse Virgo Build</name> |
284 | | - <url>http://build.eclipse.org/rt/virgo/maven/bundles/release</url> |
285 | | - </pluginRepository> |
286 | | - <pluginRepository> |
287 | | - <id>com.springsource.repository.bundles.external</id> |
288 | | - <name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name> |
289 | | - <url>http://repository.springsource.com/maven/bundles/external</url> |
290 | | - </pluginRepository> |
291 | | - </pluginRepositories> |
292 | | - |
293 | | - <build> |
294 | | - <pluginManagement> |
295 | | - <plugins> |
296 | | - |
297 | | - <plugin> |
298 | | - <groupId>org.apache.maven.plugins</groupId> |
299 | | - <artifactId>maven-release-plugin</artifactId> |
300 | | - <version>${maven-release-plugin.version}</version> |
301 | | - </plugin> |
302 | | - |
303 | | - <plugin> |
304 | | - <groupId>org.apache.maven.plugins</groupId> |
305 | | - <artifactId>maven-compiler-plugin</artifactId> |
306 | | - <version>${maven-compiler-plugin.version}</version> |
307 | | - <configuration> |
308 | | - <source>${jdk.source}</source> |
309 | | - <target>${jdk.target}</target> |
310 | | - <debug>${jdk.debug}</debug> |
311 | | - <optimize>${jdk.optimize}</optimize> |
312 | | - </configuration> |
313 | | - </plugin> |
314 | | - |
315 | | - <plugin> |
316 | | - <groupId>org.apache.maven.plugins</groupId> |
317 | | - <artifactId>maven-jar-plugin</artifactId> |
318 | | - <version>${maven-jar-plugin.version}</version> |
319 | | - <configuration> |
320 | | - <archive> |
321 | | - <manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile> |
322 | | - </archive> |
323 | | - </configuration> |
324 | | - <executions> |
325 | | - <execution> |
326 | | - <goals> |
327 | | - <goal>test-jar</goal> |
328 | | - </goals> |
329 | | - </execution> |
330 | | - </executions> |
331 | | - </plugin> |
332 | | - |
333 | | - <plugin> |
334 | | - <groupId>org.apache.maven.plugins</groupId> |
335 | | - <artifactId>maven-antrun-plugin</artifactId> |
336 | | - <version>${maven-antrun-plugin.version}</version> |
337 | | - <executions> |
338 | | - <execution> |
339 | | - <phase>validate</phase> |
340 | | - <goals> |
341 | | - <goal>run</goal> |
342 | | - </goals> |
343 | | - <configuration> |
344 | | - <tasks> |
345 | | - <echo>*******************************************************************</echo> |
346 | | - <echo>*******************************************************************</echo> |
347 | | - <echo>[project.name] : ${project.name}</echo> |
348 | | - <echo>[project.basedir] : ${project.basedir}</echo> |
349 | | - <echo>[project.version] : ${project.version}</echo> |
350 | | - <echo>[project.artifactId] ${project.artifactId}</echo> |
351 | | - <echo>[project.build.directory] ${project.build.directory}</echo> |
352 | | - <echo>[jdk.source] : ${jdk.source}</echo> |
353 | | - <echo>[jdk.target] : ${jdk.target}</echo> |
354 | | - <echo>[jdk.debug] : ${jdk.debug}</echo> |
355 | | - <echo>[jdk.optimize] : ${jdk.optimize}</echo> |
356 | | - <echo>[source encoding]: ${project.build.sourceEncoding}</echo> |
357 | | - <echo>[LocalRepository] : ${settings.localRepository}</echo> |
358 | | - <echo>*******************************************************************</echo> |
359 | | - <echo>*******************************************************************</echo> |
360 | | - </tasks> |
361 | | - </configuration> |
362 | | - </execution> |
363 | | - </executions> |
364 | | - </plugin> |
365 | | - <plugin> |
366 | | - <groupId>org.apache.maven.plugins</groupId> |
367 | | - <artifactId>maven-source-plugin</artifactId> |
368 | | - <version>3.0.1</version> |
369 | | - <executions> |
370 | | - <execution> |
371 | | - <id>attach-sources</id> |
372 | | - <goals> |
373 | | - <goal>jar-no-fork</goal> |
374 | | - </goals> |
375 | | - </execution> |
376 | | - </executions> |
377 | | - </plugin> |
378 | | - <plugin> |
379 | | - <groupId>org.apache.maven.plugins</groupId> |
380 | | - <artifactId>maven-javadoc-plugin</artifactId> |
381 | | - <version>2.10.4</version> |
382 | | - <executions> |
383 | | - <execution> |
384 | | - <id>attach-javadocs</id> |
385 | | - <goals> |
386 | | - <goal>jar</goal> |
387 | | - </goals> |
388 | | - <configuration> |
389 | | - <additionalparam>-Xdoclint:none</additionalparam> |
390 | | - </configuration> |
391 | | - </execution> |
392 | | - </executions> |
393 | | - </plugin> |
394 | | - </plugins> |
395 | | - </pluginManagement> |
396 | | - <plugins> |
397 | | - |
398 | | - <plugin> |
399 | | - <groupId>org.apache.maven.plugins</groupId> |
400 | | - <artifactId>maven-release-plugin</artifactId> |
401 | | - <version>${maven-release-plugin.version}</version> |
402 | | - <configuration> |
403 | | - <autoVersionSubmodules>true</autoVersionSubmodules> |
404 | | - <useReleaseProfile>false</useReleaseProfile> |
405 | | - <releaseProfiles>release</releaseProfiles> |
406 | | - <goals>deploy nexus-staging:release</goals> |
407 | | - </configuration> |
408 | | - </plugin> |
409 | | - |
410 | | - <plugin> |
411 | | - <groupId>org.apache.maven.plugins</groupId> |
412 | | - <artifactId>maven-surefire-plugin</artifactId> |
413 | | - <version>${maven-surefire-plugin.version}</version> |
414 | | - <configuration> |
415 | | - <rerunFailingTestsCount>3</rerunFailingTestsCount> |
416 | | - <excludedGroups>integration,integration-auth</excludedGroups> |
417 | | - </configuration> |
418 | | - </plugin> |
419 | | - |
420 | | - <plugin> |
421 | | - <groupId>org.apache.maven.plugins</groupId> |
422 | | - <artifactId>maven-failsafe-plugin</artifactId> |
423 | | - <version>${maven-failsafe-plugin.version}</version> |
424 | | - <executions> |
425 | | - <execution> |
426 | | - <goals> |
427 | | - <goal>integration-test</goal> |
428 | | - <goal>verify</goal> |
429 | | - </goals> |
430 | | - <configuration> |
431 | | - <rerunFailingTestsCount>3</rerunFailingTestsCount> |
432 | | - <useUnlimitedThreads>true</useUnlimitedThreads> |
433 | | - <perCoreThreadCount>true</perCoreThreadCount> |
434 | | - <threadCount>1</threadCount> |
435 | | - <groups>integration</groups> |
436 | | - <excludedGroups>integration-auth</excludedGroups> |
437 | | - <includes> |
438 | | - <include>**/*Test.java</include> |
439 | | - </includes> |
440 | | - </configuration> |
441 | | - </execution> |
442 | | - </executions> |
443 | | - </plugin> |
444 | | - <plugin> |
445 | | - <groupId>org.apache.maven.plugins</groupId> |
446 | | - <artifactId>maven-source-plugin</artifactId> |
447 | | - </plugin> |
448 | | - |
449 | | - <plugin> |
450 | | - <groupId>org.eclipse.virgo.bundlor</groupId> |
451 | | - <artifactId>org.eclipse.virgo.bundlor.maven</artifactId> |
452 | | - <version>${maven-bundlor-plugin.version}</version> |
453 | | - <executions> |
454 | | - <execution> |
455 | | - <id>bundlor</id> |
456 | | - <goals> |
457 | | - <goal>bundlor</goal> |
458 | | - </goals> |
459 | | - <configuration> |
460 | | - <failOnWarnings>true</failOnWarnings> |
461 | | - </configuration> |
462 | | - </execution> |
463 | | - </executions> |
464 | | - </plugin> |
465 | | - |
466 | | - <plugin> |
467 | | - <groupId>org.codehaus.mojo</groupId> |
468 | | - <artifactId>build-helper-maven-plugin</artifactId> |
469 | | - <version>${maven-build-helper-plugin.version}</version> |
470 | | - <executions> |
471 | | - <execution> |
472 | | - <id>parse-version</id> |
473 | | - <goals> |
474 | | - <goal>parse-version</goal> |
475 | | - </goals> |
476 | | - </execution> |
477 | | - </executions> |
478 | | - </plugin> |
479 | | - </plugins> |
480 | | - </build> |
481 | | - |
482 | | - <profiles> |
483 | | - <profile> |
484 | | - <id>release</id> |
485 | | - <build> |
486 | | - <plugins> |
487 | | - <plugin> |
488 | | - <groupId>org.apache.maven.plugins</groupId> |
489 | | - <artifactId>maven-gpg-plugin</artifactId> |
490 | | - <executions> |
491 | | - <execution> |
492 | | - <id>sign-artifacts</id> |
493 | | - <phase>verify</phase> |
494 | | - <goals> |
495 | | - <goal>sign</goal> |
496 | | - </goals> |
497 | | - </execution> |
498 | | - </executions> |
499 | | - </plugin> |
500 | | - <plugin> |
501 | | - <groupId>org.apache.maven.plugins</groupId> |
502 | | - <artifactId>maven-source-plugin</artifactId> |
503 | | - </plugin> |
504 | | - </plugins> |
505 | | - </build> |
506 | | - </profile> |
507 | | - <profile> |
508 | | - <id>docker-java-analyses</id> |
509 | | - <activation> |
510 | | - <activeByDefault>true</activeByDefault> |
511 | | - </activation> |
512 | | - <build> |
513 | | - <plugins> |
514 | | - <plugin> |
515 | | - <artifactId>maven-checkstyle-plugin</artifactId> |
516 | | - <version>2.17</version> |
517 | | - <executions> |
518 | | - <execution> |
519 | | - <id>checkstyle</id> |
520 | | - <phase>validate</phase> |
521 | | - <goals> |
522 | | - <goal>check</goal> |
523 | | - </goals> |
524 | | - </execution> |
525 | | - </executions> |
526 | | - <configuration> |
527 | | - <encoding>UTF-8</encoding> |
528 | | - <failOnViolation>true</failOnViolation> |
529 | | - <logViolationsToConsole>true</logViolationsToConsole> |
530 | | - <linkXRef>false</linkXRef> |
531 | | - <!-- if some IDE has integration and requires other place, propose |
532 | | - it --> |
533 | | - <configLocation> |
534 | | - src/test/resources/checkstyle/checkstyle-config.xml |
535 | | - </configLocation> |
536 | | - </configuration> |
537 | | - </plugin> |
538 | | - <plugin> |
539 | | - <groupId>org.codehaus.mojo</groupId> |
540 | | - <artifactId>findbugs-maven-plugin</artifactId> |
541 | | - <version>3.0.3</version> |
542 | | - <configuration> |
543 | | - <effort>Max</effort> |
544 | | - <threshold>Low</threshold> |
545 | | - <xmlOutput>true</xmlOutput> |
546 | | - <!-- until all will be fixed --> |
547 | | - <failOnError>false</failOnError> |
548 | | - </configuration> |
549 | | - <executions> |
550 | | - <execution> |
551 | | - <goals> |
552 | | - <goal>check</goal> |
553 | | - </goals> |
554 | | - </execution> |
555 | | - </executions> |
556 | | - </plugin> |
557 | | - </plugins> |
558 | | - </build> |
559 | | - </profile> |
560 | | - </profiles> |
561 | | - |
562 | 269 | </project> |
0 commit comments