|
293 | 293 | <executions>
|
294 | 294 | <execution>
|
295 | 295 | <id>build-gradle-kotlin-dsl</id>
|
296 |
| - <phase>none</phase> |
| 296 | + <phase>compile</phase> |
297 | 297 | <goals>
|
298 | 298 | <goal>exec</goal>
|
299 | 299 | </goals>
|
|
307 | 307 | </execution>
|
308 | 308 | <execution>
|
309 | 309 | <id>test-gradle-kotlin-dsl</id>
|
310 |
| - <phase>none</phase> |
| 310 | + <phase>test</phase> |
311 | 311 | <goals>
|
312 | 312 | <goal>exec</goal>
|
313 | 313 | </goals>
|
|
321 | 321 | </execution>
|
322 | 322 | <execution>
|
323 | 323 | <id>build-kotlin-build-plugins</id>
|
324 |
| - <phase>none</phase> |
| 324 | + <phase>compile</phase> |
325 | 325 | <goals>
|
326 | 326 | <goal>exec</goal>
|
327 | 327 | </goals>
|
|
335 | 335 | </execution>
|
336 | 336 | <execution>
|
337 | 337 | <id>test-kotlin-build-plugins</id>
|
338 |
| - <phase>none</phase> |
| 338 | + <phase>test</phase> |
339 | 339 | <goals>
|
340 | 340 | <goal>exec</goal>
|
341 | 341 | </goals>
|
|
349 | 349 | </execution>
|
350 | 350 | <execution>
|
351 | 351 | <id>build-kotlin-kover</id>
|
352 |
| - <phase>none</phase> |
| 352 | + <phase>compile</phase> |
353 | 353 | <goals>
|
354 | 354 | <goal>exec</goal>
|
355 | 355 | </goals>
|
|
363 | 363 | </execution>
|
364 | 364 | <execution>
|
365 | 365 | <id>test-kotlin-kover</id>
|
366 |
| - <phase>none</phase> |
| 366 | + <phase>test</phase> |
367 | 367 | <goals>
|
368 | 368 | <goal>exec</goal>
|
369 | 369 | </goals>
|
|
377 | 377 | </execution>
|
378 | 378 | <execution>
|
379 | 379 | <id>build-kotlin-ktor</id>
|
380 |
| - <phase>none</phase> |
| 380 | + <phase>compile</phase> |
381 | 381 | <goals>
|
382 | 382 | <goal>exec</goal>
|
383 | 383 | </goals>
|
|
391 | 391 | </execution>
|
392 | 392 | <execution>
|
393 | 393 | <id>test-kotlin-ktor</id>
|
394 |
| - <phase>none</phase> |
| 394 | + <phase>test</phase> |
395 | 395 | <goals>
|
396 | 396 | <goal>exec</goal>
|
397 | 397 | </goals>
|
|
633 | 633 | <plugin>
|
634 | 634 | <groupId>org.codehaus.mojo</groupId>
|
635 | 635 | <artifactId>exec-maven-plugin</artifactId>
|
| 636 | + <version>${exec-maven-plugin.version}</version> |
636 | 637 | <executions>
|
637 | 638 | <execution>
|
638 | 639 | <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> |
650 | 640 | </execution>
|
651 | 641 | <execution>
|
652 | 642 | <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> |
664 | 643 | </execution>
|
665 | 644 | <execution>
|
666 | 645 | <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> |
678 | 646 | </execution>
|
679 | 647 | <execution>
|
680 | 648 | <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> |
692 | 649 | </execution>
|
693 | 650 | <execution>
|
694 | 651 | <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> |
706 | 652 | </execution>
|
707 | 653 | <execution>
|
708 | 654 | <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> |
720 | 655 | </execution>
|
721 | 656 | <execution>
|
722 | 657 | <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> |
734 | 658 | </execution>
|
735 | 659 | <execution>
|
736 | 660 | <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> |
748 | 661 | </execution>
|
749 | 662 | </executions>
|
750 | 663 | </plugin>
|
|
0 commit comments