|
80 | 80 | <!-- database driver --> |
81 | 81 | <mysql-connector-j.version>8.0.32</mysql-connector-j.version> |
82 | 82 | <postgre.version>42.5.3</postgre.version> |
83 | | - <!-- Plugins Version --> |
| 83 | + <!-- Plugins Version sort by alphabet --> |
| 84 | + <maven-assembly-plugin.version>3.3.0</maven-assembly-plugin.version> |
84 | 85 | <maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version> |
85 | | - <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> |
86 | | - <maven-source-plugin.version>3.2.1</maven-source-plugin.version> |
87 | | - <maven-jar-plugin.version>3.2.2</maven-jar-plugin.version> |
88 | | - <maven-war-plugin.version>3.3.2</maven-war-plugin.version> |
89 | | - <maven-install-plugin.version>2.5.2</maven-install-plugin.version> |
90 | 86 | <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> |
91 | | - <maven-javadoc-plugin.version>3.4.0</maven-javadoc-plugin.version> |
92 | 87 | <maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version> |
93 | | - <maven-assembly-plugin.version>3.3.0</maven-assembly-plugin.version> |
| 88 | + <maven-install-plugin.version>2.5.2</maven-install-plugin.version> |
| 89 | + <maven-jacoco-plugin.version>0.8.8</maven-jacoco-plugin.version> |
| 90 | + <maven-jar-plugin.version>3.2.2</maven-jar-plugin.version> |
| 91 | + <maven-javadoc-plugin.version>3.4.0</maven-javadoc-plugin.version> |
| 92 | + <maven-war-plugin.version>3.3.2</maven-war-plugin.version> |
| 93 | + <maven-source-plugin.version>3.2.1</maven-source-plugin.version> |
| 94 | + <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> |
94 | 95 | </properties> |
95 | 96 |
|
96 | 97 | <modules> |
|
545 | 546 | <groupId>org.codehaus.mojo</groupId> |
546 | 547 | <artifactId>flatten-maven-plugin</artifactId> |
547 | 548 | </plugin> |
| 549 | + <plugin> |
| 550 | + <groupId>org.jacoco</groupId> |
| 551 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 552 | + <version>${maven-jacoco-plugin.version}</version> |
| 553 | + <executions> |
| 554 | + <execution> |
| 555 | + <id>prepare-agent</id> |
| 556 | + <goals> |
| 557 | + <goal>prepare-agent</goal> |
| 558 | + </goals> |
| 559 | + </execution> |
| 560 | + </executions> |
| 561 | + </plugin> |
548 | 562 | </plugins> |
549 | 563 | <resources> |
550 | 564 | <resource> |
|
570 | 584 | </resources> |
571 | 585 | </build> |
572 | 586 | <profiles> |
573 | | - <profile> |
574 | | - <!-- for travis usage --> |
575 | | - <id>travis</id> |
576 | | - <activation> |
577 | | - <property> |
578 | | - <name>env.TRAVIS</name> |
579 | | - <value>true</value> |
580 | | - </property> |
581 | | - </activation> |
582 | | - <build> |
583 | | - <plugins> |
584 | | - <plugin> |
585 | | - <groupId>com.github.github</groupId> |
586 | | - <artifactId>site-maven-plugin</artifactId> |
587 | | - <version>0.12</version> |
588 | | - <configuration> |
589 | | - <message>Site for ${project.artifactId}, ${project.version}</message> |
590 | | - <path>${github.path}</path> |
591 | | - <merge>true</merge> |
592 | | - </configuration> |
593 | | - <executions> |
594 | | - <execution> |
595 | | - <goals> |
596 | | - <goal>site</goal> |
597 | | - </goals> |
598 | | - <phase>site</phase> |
599 | | - </execution> |
600 | | - </executions> |
601 | | - </plugin> |
602 | | - <plugin> |
603 | | - <groupId>org.jacoco</groupId> |
604 | | - <artifactId>jacoco-maven-plugin</artifactId> |
605 | | - <version>0.8.8</version> |
606 | | - <executions> |
607 | | - <execution> |
608 | | - <id>prepare-agent</id> |
609 | | - <goals> |
610 | | - <goal>prepare-agent</goal> |
611 | | - </goals> |
612 | | - </execution> |
613 | | - </executions> |
614 | | - </plugin> |
615 | | - <plugin> |
616 | | - <groupId>org.eluder.coveralls</groupId> |
617 | | - <artifactId>coveralls-maven-plugin</artifactId> |
618 | | - <version>4.3.0</version> |
619 | | - </plugin> |
620 | | - </plugins> |
621 | | - </build> |
622 | | - </profile> |
623 | 587 | <profile> |
624 | 588 | <!-- for open source usage --> |
625 | 589 | <id>github</id> |
|
0 commit comments