File tree Expand file tree Collapse file tree 1 file changed +52
-6
lines changed Expand file tree Collapse file tree 1 file changed +52
-6
lines changed Original file line number Diff line number Diff line change 606
606
<groupId >org.codehaus.mojo</groupId >
607
607
<artifactId >exec-maven-plugin</artifactId >
608
608
<executions >
609
- <execution >
610
- <id >build-gradle-kotlin-dsl</id >
611
- <phase >test</phase >
612
- </execution >
613
609
<execution >
614
610
<id >test-gradle-kotlin-dsl</id >
615
611
<phase >test</phase >
612
+ <goals >
613
+ <goal >exec</goal >
614
+ </goals >
615
+ <configuration >
616
+ <workingDirectory >${rootproject.basedir} /gradle-kotlin-dsl</workingDirectory >
617
+ <executable >./gradlew</executable >
618
+ <arguments >
619
+ <argument >test</argument >
620
+ </arguments >
621
+ </configuration >
616
622
</execution >
617
623
<execution >
618
624
<id >build-kotlin-build-plugins</id >
619
- <phase >test</phase >
625
+ <phase >compile</phase >
626
+ <goals >
627
+ <goal >exec</goal >
628
+ </goals >
629
+ <configuration >
630
+ <workingDirectory >${rootproject.basedir} /kotlin-build-plugins</workingDirectory >
631
+ <executable >./gradlew</executable >
632
+ <arguments >
633
+ <argument >build</argument >
634
+ </arguments >
635
+ </configuration >
620
636
</execution >
621
637
<execution >
622
638
<id >test-kotlin-build-plugins</id >
623
639
<phase >test</phase >
640
+ <goals >
641
+ <goal >exec</goal >
642
+ </goals >
643
+ <configuration >
644
+ <workingDirectory >${rootproject.basedir} /kotlin-build-plugins</workingDirectory >
645
+ <executable >./gradlew</executable >
646
+ <arguments >
647
+ <argument >test</argument >
648
+ </arguments >
649
+ </configuration >
624
650
</execution >
625
651
<execution >
626
652
<id >build-kotlin-kover</id >
627
- <phase >test</phase >
653
+ <phase >compile</phase >
654
+ <goals >
655
+ <goal >exec</goal >
656
+ </goals >
657
+ <configuration >
658
+ <workingDirectory >${rootproject.basedir} /kotlin-kover</workingDirectory >
659
+ <executable >./gradlew</executable >
660
+ <arguments >
661
+ <argument >build</argument >
662
+ </arguments >
663
+ </configuration >
628
664
</execution >
629
665
<execution >
630
666
<id >test-kotlin-kover</id >
631
667
<phase >test</phase >
668
+ <goals >
669
+ <goal >exec</goal >
670
+ </goals >
671
+ <configuration >
672
+ <workingDirectory >${rootproject.basedir} /kotlin-kover</workingDirectory >
673
+ <executable >./gradlew</executable >
674
+ <arguments >
675
+ <argument >test</argument >
676
+ </arguments >
677
+ </configuration >
632
678
</execution >
633
679
</executions >
634
680
</plugin >
You can’t perform that action at this time.
0 commit comments