|
22 | 22 | <dockerfileName>Dockerfile</dockerfileName> |
23 | 23 |
|
24 | 24 | <!-- plugin versions --> |
25 | | - <checkstyle-plugin.version>3.4.0</checkstyle-plugin.version> |
26 | | - <checkstyle.version>10.17.0</checkstyle.version> |
27 | 25 | <download-plugin.version>1.9.0</download-plugin.version> |
28 | 26 | <git-commmit-plugin.version>4.9.10</git-commmit-plugin.version> |
29 | 27 |
|
|
398 | 396 | </execution> |
399 | 397 | </executions> |
400 | 398 | </plugin> |
401 | | - <plugin> |
402 | | - <groupId>org.apache.maven.plugins</groupId> |
403 | | - <artifactId>maven-checkstyle-plugin</artifactId> |
404 | | - <version>${checkstyle-plugin.version}</version> |
405 | | - <configuration> |
406 | | - <!-- Project rooted path to CheckStyle configuration file. --> |
407 | | - <configLocation>checkstyle.xml</configLocation> |
408 | | - <encoding>UTF-8</encoding> |
409 | | - <consoleOutput>true</consoleOutput> |
410 | | - <!-- true if project build should fails on any style violation. --> |
411 | | - <failsOnError>true</failsOnError> |
412 | | - <linkXRef>false</linkXRef> |
413 | | - <includeTestSourceDirectory>true</includeTestSourceDirectory> |
414 | | - </configuration> |
415 | | - <dependencies> |
416 | | - <dependency> |
417 | | - <groupId>com.puppycrawl.tools</groupId> |
418 | | - <artifactId>checkstyle</artifactId> |
419 | | - <version>${checkstyle.version}</version> |
420 | | - </dependency> |
421 | | - </dependencies> |
422 | | - </plugin> |
423 | 399 | <plugin> |
424 | 400 | <groupId>org.codehaus.gmavenplus</groupId> |
425 | 401 | <artifactId>gmavenplus-plugin</artifactId> |
|
455 | 431 | </execution> |
456 | 432 | </executions> |
457 | 433 | </plugin> |
458 | | - <plugin> |
459 | | - <groupId>org.apache.maven.plugins</groupId> |
460 | | - <artifactId>maven-checkstyle-plugin</artifactId> |
461 | | - <executions> |
462 | | - <execution> |
463 | | - <phase>validate</phase> |
464 | | - <goals> |
465 | | - <goal>checkstyle</goal> |
466 | | - </goals> |
467 | | - </execution> |
468 | | - </executions> |
469 | | - </plugin> |
470 | 434 | <plugin> |
471 | 435 | <groupId>org.xolstice.maven.plugins</groupId> |
472 | 436 | <artifactId>protobuf-maven-plugin</artifactId> |
|
690 | 654 | </plugins> |
691 | 655 | </build> |
692 | 656 |
|
693 | | - <reporting> |
694 | | - <plugins> |
695 | | - <plugin> |
696 | | - <groupId>org.apache.maven.plugins</groupId> |
697 | | - <artifactId>maven-checkstyle-plugin</artifactId> |
698 | | - <reportSets> |
699 | | - <reportSet> |
700 | | - <reports> |
701 | | - <report>checkstyle</report> |
702 | | - </reports> |
703 | | - </reportSet> |
704 | | - </reportSets> |
705 | | - </plugin> |
706 | | - </plugins> |
707 | | - </reporting> |
708 | | - |
709 | 657 | <profiles> |
710 | 658 | <profile> |
711 | 659 | <!-- Run only one application container instance on fixed ports for debugging purposes --> |
|
0 commit comments