Skip to content

Commit c450038

Browse files
committed
testing profiles
1 parent 996f732 commit c450038

File tree

1 file changed

+52
-6
lines changed

1 file changed

+52
-6
lines changed

pom.xml

Lines changed: 52 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -606,29 +606,75 @@
606606
<groupId>org.codehaus.mojo</groupId>
607607
<artifactId>exec-maven-plugin</artifactId>
608608
<executions>
609-
<execution>
610-
<id>build-gradle-kotlin-dsl</id>
611-
<phase>test</phase>
612-
</execution>
613609
<execution>
614610
<id>test-gradle-kotlin-dsl</id>
615611
<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>
616622
</execution>
617623
<execution>
618624
<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>
620636
</execution>
621637
<execution>
622638
<id>test-kotlin-build-plugins</id>
623639
<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>
624650
</execution>
625651
<execution>
626652
<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>
628664
</execution>
629665
<execution>
630666
<id>test-kotlin-kover</id>
631667
<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>
632678
</execution>
633679
</executions>
634680
</plugin>

0 commit comments

Comments
 (0)