|
633 | 633 | <plugin>
|
634 | 634 | <groupId>org.codehaus.mojo</groupId>
|
635 | 635 | <artifactId>exec-maven-plugin</artifactId>
|
636 |
| - <version>${exec-maven-plugin.version}</version> |
637 | 636 | <executions>
|
638 | 637 | <execution>
|
639 | 638 | <id>build-gradle-kotlin-dsl</id>
|
| 639 | + <phase>compile</phase> |
| 640 | + <goals> |
| 641 | + <goal>exec</goal> |
| 642 | + </goals> |
| 643 | + <configuration> |
| 644 | + <workingDirectory>${rootproject.basedir}/gradle-kotlin-dsl</workingDirectory> |
| 645 | + <executable>./gradlew</executable> |
| 646 | + <arguments> |
| 647 | + <argument>build</argument> |
| 648 | + </arguments> |
| 649 | + </configuration> |
640 | 650 | </execution>
|
641 | 651 | <execution>
|
642 | 652 | <id>test-gradle-kotlin-dsl</id>
|
| 653 | + <phase>test</phase> |
| 654 | + <goals> |
| 655 | + <goal>exec</goal> |
| 656 | + </goals> |
| 657 | + <configuration> |
| 658 | + <workingDirectory>${rootproject.basedir}/gradle-kotlin-dsl</workingDirectory> |
| 659 | + <executable>./gradlew</executable> |
| 660 | + <arguments> |
| 661 | + <argument>test</argument> |
| 662 | + </arguments> |
| 663 | + </configuration> |
643 | 664 | </execution>
|
644 | 665 | <execution>
|
645 | 666 | <id>build-kotlin-build-plugins</id>
|
| 667 | + <phase>compile</phase> |
| 668 | + <goals> |
| 669 | + <goal>exec</goal> |
| 670 | + </goals> |
| 671 | + <configuration> |
| 672 | + <workingDirectory>${rootproject.basedir}/kotlin-build-plugins</workingDirectory> |
| 673 | + <executable>./gradlew</executable> |
| 674 | + <arguments> |
| 675 | + <argument>build</argument> |
| 676 | + </arguments> |
| 677 | + </configuration> |
646 | 678 | </execution>
|
647 | 679 | <execution>
|
648 | 680 | <id>test-kotlin-build-plugins</id>
|
| 681 | + <phase>test</phase> |
| 682 | + <goals> |
| 683 | + <goal>exec</goal> |
| 684 | + </goals> |
| 685 | + <configuration> |
| 686 | + <workingDirectory>${rootproject.basedir}/kotlin-build-plugins</workingDirectory> |
| 687 | + <executable>./gradlew</executable> |
| 688 | + <arguments> |
| 689 | + <argument>test</argument> |
| 690 | + </arguments> |
| 691 | + </configuration> |
649 | 692 | </execution>
|
650 | 693 | <execution>
|
651 | 694 | <id>build-kotlin-kover</id>
|
| 695 | + <phase>compile</phase> |
| 696 | + <goals> |
| 697 | + <goal>exec</goal> |
| 698 | + </goals> |
| 699 | + <configuration> |
| 700 | + <workingDirectory>${rootproject.basedir}/kotlin-kover</workingDirectory> |
| 701 | + <executable>./gradlew</executable> |
| 702 | + <arguments> |
| 703 | + <argument>build</argument> |
| 704 | + </arguments> |
| 705 | + </configuration> |
652 | 706 | </execution>
|
653 | 707 | <execution>
|
654 | 708 | <id>test-kotlin-kover</id>
|
| 709 | + <phase>test</phase> |
| 710 | + <goals> |
| 711 | + <goal>exec</goal> |
| 712 | + </goals> |
| 713 | + <configuration> |
| 714 | + <workingDirectory>${rootproject.basedir}/kotlin-kover</workingDirectory> |
| 715 | + <executable>./gradlew</executable> |
| 716 | + <arguments> |
| 717 | + <argument>test</argument> |
| 718 | + </arguments> |
| 719 | + </configuration> |
655 | 720 | </execution>
|
656 | 721 | <execution>
|
657 | 722 | <id>build-kotlin-ktor</id>
|
| 723 | + <phase>compile</phase> |
| 724 | + <goals> |
| 725 | + <goal>exec</goal> |
| 726 | + </goals> |
| 727 | + <configuration> |
| 728 | + <workingDirectory>${rootproject.basedir}/kotlin-ktor</workingDirectory> |
| 729 | + <executable>./gradlew</executable> |
| 730 | + <arguments> |
| 731 | + <argument>build</argument> |
| 732 | + </arguments> |
| 733 | + </configuration> |
658 | 734 | </execution>
|
659 | 735 | <execution>
|
660 | 736 | <id>test-kotlin-ktor</id>
|
| 737 | + <phase>test</phase> |
| 738 | + <goals> |
| 739 | + <goal>exec</goal> |
| 740 | + </goals> |
| 741 | + <configuration> |
| 742 | + <workingDirectory>${rootproject.basedir}/kotlin-ktor</workingDirectory> |
| 743 | + <executable>./gradlew</executable> |
| 744 | + <arguments> |
| 745 | + <argument>test</argument> |
| 746 | + </arguments> |
| 747 | + </configuration> |
661 | 748 | </execution>
|
662 | 749 | </executions>
|
663 | 750 | </plugin>
|
|
0 commit comments