|
328 | 328 | </executions>
|
329 | 329 | </plugin>
|
330 | 330 |
|
| 331 | + <plugin> |
| 332 | + <groupId>org.codehaus.mojo</groupId> |
| 333 | + <artifactId>exec-maven-plugin</artifactId> |
| 334 | + <version>${exec-maven-plugin.version}</version> |
| 335 | + <executions> |
| 336 | + <execution> |
| 337 | + <id>build-gradle-kotlin-dsl</id> |
| 338 | + <phase>none</phase> |
| 339 | + <goals> |
| 340 | + <goal>exec</goal> |
| 341 | + </goals> |
| 342 | + <configuration> |
| 343 | + <workingDirectory>${project.basedir}/gradle-kotlin-dsl</workingDirectory> |
| 344 | + <executable>./gradlew</executable> |
| 345 | + <arguments> |
| 346 | + <argument>build</argument> |
| 347 | + </arguments> |
| 348 | + </configuration> |
| 349 | + </execution> |
| 350 | + <execution> |
| 351 | + <id>test-gradle-kotlin-dsl</id> |
| 352 | + <phase>none</phase> |
| 353 | + <goals> |
| 354 | + <goal>exec</goal> |
| 355 | + </goals> |
| 356 | + <configuration> |
| 357 | + <workingDirectory>${project.basedir}/gradle-kotlin-dsl</workingDirectory> |
| 358 | + <executable>./gradlew</executable> |
| 359 | + <arguments> |
| 360 | + <argument>test</argument> |
| 361 | + </arguments> |
| 362 | + </configuration> |
| 363 | + </execution> |
| 364 | + <execution> |
| 365 | + <id>build-kotlin-build-plugins</id> |
| 366 | + <phase>none</phase> |
| 367 | + <goals> |
| 368 | + <goal>exec</goal> |
| 369 | + </goals> |
| 370 | + <configuration> |
| 371 | + <workingDirectory>${project.basedir}/kotlin-build-plugins</workingDirectory> |
| 372 | + <executable>./gradlew</executable> |
| 373 | + <arguments> |
| 374 | + <argument>build</argument> |
| 375 | + </arguments> |
| 376 | + </configuration> |
| 377 | + </execution> |
| 378 | + <execution> |
| 379 | + <id>test-kotlin-build-plugins</id> |
| 380 | + <phase>none</phase> |
| 381 | + <goals> |
| 382 | + <goal>exec</goal> |
| 383 | + </goals> |
| 384 | + <configuration> |
| 385 | + <workingDirectory>${project.basedir}/kotlin-build-plugins</workingDirectory> |
| 386 | + <executable>./gradlew</executable> |
| 387 | + <arguments> |
| 388 | + <argument>test</argument> |
| 389 | + </arguments> |
| 390 | + </configuration> |
| 391 | + </execution> |
| 392 | + <execution> |
| 393 | + <id>build-kotlin-kover</id> |
| 394 | + <phase>none</phase> |
| 395 | + <goals> |
| 396 | + <goal>exec</goal> |
| 397 | + </goals> |
| 398 | + <configuration> |
| 399 | + <workingDirectory>${project.basedir}/kotlin-kover</workingDirectory> |
| 400 | + <executable>./gradlew</executable> |
| 401 | + <arguments> |
| 402 | + <argument>build</argument> |
| 403 | + </arguments> |
| 404 | + </configuration> |
| 405 | + </execution> |
| 406 | + <execution> |
| 407 | + <id>test-kotlin-kover</id> |
| 408 | + <phase>none</phase> |
| 409 | + <goals> |
| 410 | + <goal>exec</goal> |
| 411 | + </goals> |
| 412 | + <configuration> |
| 413 | + <workingDirectory>${project.basedir}/kotlin-kover</workingDirectory> |
| 414 | + <executable>./gradlew</executable> |
| 415 | + <arguments> |
| 416 | + <argument>test</argument> |
| 417 | + </arguments> |
| 418 | + </configuration> |
| 419 | + </execution> |
| 420 | + <execution> |
| 421 | + <id>build-kotlin-ktor</id> |
| 422 | + <phase>none</phase> |
| 423 | + <goals> |
| 424 | + <goal>exec</goal> |
| 425 | + </goals> |
| 426 | + <configuration> |
| 427 | + <workingDirectory>${project.basedir}/kotlin-ktor</workingDirectory> |
| 428 | + <executable>./gradlew</executable> |
| 429 | + <arguments> |
| 430 | + <argument>build</argument> |
| 431 | + </arguments> |
| 432 | + </configuration> |
| 433 | + </execution> |
| 434 | + <execution> |
| 435 | + <id>test-kotlin-ktor</id> |
| 436 | + <phase>none</phase> |
| 437 | + <goals> |
| 438 | + <goal>exec</goal> |
| 439 | + </goals> |
| 440 | + <configuration> |
| 441 | + <workingDirectory>${project.basedir}/kotlin-ktor</workingDirectory> |
| 442 | + <executable>./gradlew</executable> |
| 443 | + <arguments> |
| 444 | + <argument>test</argument> |
| 445 | + </arguments> |
| 446 | + </configuration> |
| 447 | + </execution> |
| 448 | + </executions> |
| 449 | + </plugin> |
| 450 | + |
331 | 451 | </plugins>
|
332 | 452 |
|
333 | 453 | <extensions>
|
|
547 | 667 | <goal>exec</goal>
|
548 | 668 | </goals>
|
549 | 669 | <configuration>
|
550 |
| - <workingDirectory>${rootproject.basedir}/kotlin-build-plugins</workingDirectory> |
| 670 | + <workingDirectory>${project.basedir}/kotlin-build-plugins</workingDirectory> |
551 | 671 | <executable>./gradlew</executable>
|
552 | 672 | <arguments>
|
553 | 673 | <argument>build</argument>
|
|
561 | 681 | <goal>exec</goal>
|
562 | 682 | </goals>
|
563 | 683 | <configuration>
|
564 |
| - <workingDirectory>${rootproject.basedir}/kotlin-build-plugins</workingDirectory> |
| 684 | + <workingDirectory>${project.basedir}/kotlin-build-plugins</workingDirectory> |
565 | 685 | <executable>./gradlew</executable>
|
566 | 686 | <arguments>
|
567 | 687 | <argument>test</argument>
|
|
575 | 695 | <goal>exec</goal>
|
576 | 696 | </goals>
|
577 | 697 | <configuration>
|
578 |
| - <workingDirectory>${rootproject.basedir}/kotlin-kover</workingDirectory> |
| 698 | + <workingDirectory>${project.basedir}/kotlin-kover</workingDirectory> |
579 | 699 | <executable>./gradlew</executable>
|
580 | 700 | <arguments>
|
581 | 701 | <argument>build</argument>
|
|
589 | 709 | <goal>exec</goal>
|
590 | 710 | </goals>
|
591 | 711 | <configuration>
|
592 |
| - <workingDirectory>${rootproject.basedir}/kotlin-kover</workingDirectory> |
| 712 | + <workingDirectory>${project.basedir}/kotlin-kover</workingDirectory> |
593 | 713 | <executable>./gradlew</executable>
|
594 | 714 | <arguments>
|
595 | 715 | <argument>test</argument>
|
|
603 | 723 | <goal>exec</goal>
|
604 | 724 | </goals>
|
605 | 725 | <configuration>
|
606 |
| - <workingDirectory>${rootproject.basedir}/kotlin-ktor</workingDirectory> |
| 726 | + <workingDirectory>${project.basedir}/kotlin-ktor</workingDirectory> |
607 | 727 | <executable>./gradlew</executable>
|
608 | 728 | <arguments>
|
609 | 729 | <argument>build</argument>
|
|
617 | 737 | <goal>exec</goal>
|
618 | 738 | </goals>
|
619 | 739 | <configuration>
|
620 |
| - <workingDirectory>${rootproject.basedir}/kotlin-ktor</workingDirectory> |
| 740 | + <workingDirectory>${project.basedir}/kotlin-ktor</workingDirectory> |
621 | 741 | <executable>./gradlew</executable>
|
622 | 742 | <arguments>
|
623 | 743 | <argument>test</argument>
|
|
0 commit comments