|
109 | 109 | <includeToString>false</includeToString> |
110 | 110 | </configuration> |
111 | 111 | </execution> |
| 112 | + <execution> |
| 113 | + <id>generate-artifact-signed-from-schema</id> |
| 114 | + <phase>generate-sources</phase> |
| 115 | + <goals> |
| 116 | + <goal>generate</goal> |
| 117 | + </goals> |
| 118 | + <configuration> |
| 119 | + <sourcePaths> |
| 120 | + <sourcePath>${parent.project.dir}/spec/schemas/artifactsigned.json</sourcePath> |
| 121 | + </sourcePaths> |
| 122 | + <outputDirectory>${sdk.project.dir}/src/main/java</outputDirectory> |
| 123 | + <targetPackage>dev.cdevents.models.artifact.signed</targetPackage> |
| 124 | + <includeHashcodeAndEquals>false</includeHashcodeAndEquals> |
| 125 | + <includeToString>false</includeToString> |
| 126 | + </configuration> |
| 127 | + </execution> |
112 | 128 | <execution> |
113 | 129 | <id>generate-branch-created-from-schema</id> |
114 | 130 | <phase>generate-sources</phase> |
|
317 | 333 | <includeToString>false</includeToString> |
318 | 334 | </configuration> |
319 | 335 | </execution> |
| 336 | + <execution> |
| 337 | + <id>generate-incident-detected-from-schema</id> |
| 338 | + <phase>generate-sources</phase> |
| 339 | + <goals> |
| 340 | + <goal>generate</goal> |
| 341 | + </goals> |
| 342 | + <configuration> |
| 343 | + <sourcePaths> |
| 344 | + <sourcePath>${parent.project.dir}/spec/schemas/incidentdetected.json</sourcePath> |
| 345 | + </sourcePaths> |
| 346 | + <outputDirectory>${sdk.project.dir}/src/main/java</outputDirectory> |
| 347 | + <targetPackage>dev.cdevents.models.incident.detected</targetPackage> |
| 348 | + <includeHashcodeAndEquals>false</includeHashcodeAndEquals> |
| 349 | + <includeToString>false</includeToString> |
| 350 | + </configuration> |
| 351 | + </execution> |
| 352 | + <execution> |
| 353 | + <id>generate-incident-reported-from-schema</id> |
| 354 | + <phase>generate-sources</phase> |
| 355 | + <goals> |
| 356 | + <goal>generate</goal> |
| 357 | + </goals> |
| 358 | + <configuration> |
| 359 | + <sourcePaths> |
| 360 | + <sourcePath>${parent.project.dir}/spec/schemas/incidentreported.json</sourcePath> |
| 361 | + </sourcePaths> |
| 362 | + <outputDirectory>${sdk.project.dir}/src/main/java</outputDirectory> |
| 363 | + <targetPackage>dev.cdevents.models.incident.reported</targetPackage> |
| 364 | + <includeHashcodeAndEquals>false</includeHashcodeAndEquals> |
| 365 | + <includeToString>false</includeToString> |
| 366 | + </configuration> |
| 367 | + </execution> |
| 368 | + <execution> |
| 369 | + <id>generate-incident-resolved-from-schema</id> |
| 370 | + <phase>generate-sources</phase> |
| 371 | + <goals> |
| 372 | + <goal>generate</goal> |
| 373 | + </goals> |
| 374 | + <configuration> |
| 375 | + <sourcePaths> |
| 376 | + <sourcePath>${parent.project.dir}/spec/schemas/incidentresolved.json</sourcePath> |
| 377 | + </sourcePaths> |
| 378 | + <outputDirectory>${sdk.project.dir}/src/main/java</outputDirectory> |
| 379 | + <targetPackage>dev.cdevents.models.incident.resolved</targetPackage> |
| 380 | + <includeHashcodeAndEquals>false</includeHashcodeAndEquals> |
| 381 | + <includeToString>false</includeToString> |
| 382 | + </configuration> |
| 383 | + </execution> |
320 | 384 | <execution> |
321 | 385 | <id>generate-pipelinerun-finished-from-schema</id> |
322 | 386 | <phase>generate-sources</phase> |
|
526 | 590 | </configuration> |
527 | 591 | </execution> |
528 | 592 | <execution> |
529 | | - <id>generate-testcase-finished-from-schema</id> |
| 593 | + <id>generate-testcaserun-finished-from-schema</id> |
| 594 | + <phase>generate-sources</phase> |
| 595 | + <goals> |
| 596 | + <goal>generate</goal> |
| 597 | + </goals> |
| 598 | + <configuration> |
| 599 | + <sourcePaths> |
| 600 | + <sourcePath>${parent.project.dir}/spec/schemas/testcaserunfinished.json</sourcePath> |
| 601 | + </sourcePaths> |
| 602 | + <outputDirectory>${sdk.project.dir}/src/main/java</outputDirectory> |
| 603 | + <targetPackage>dev.cdevents.models.testcaserun.finished</targetPackage> |
| 604 | + <includeHashcodeAndEquals>false</includeHashcodeAndEquals> |
| 605 | + <includeToString>false</includeToString> |
| 606 | + </configuration> |
| 607 | + </execution> |
| 608 | + <execution> |
| 609 | + <id>generate-testcaserun-queued-from-schema</id> |
| 610 | + <phase>generate-sources</phase> |
| 611 | + <goals> |
| 612 | + <goal>generate</goal> |
| 613 | + </goals> |
| 614 | + <configuration> |
| 615 | + <sourcePaths> |
| 616 | + <sourcePath>${parent.project.dir}/spec/schemas/testcaserunqueued.json</sourcePath> |
| 617 | + </sourcePaths> |
| 618 | + <outputDirectory>${sdk.project.dir}/src/main/java</outputDirectory> |
| 619 | + <targetPackage>dev.cdevents.models.testcaserun.queued</targetPackage> |
| 620 | + <includeHashcodeAndEquals>false</includeHashcodeAndEquals> |
| 621 | + <includeToString>false</includeToString> |
| 622 | + </configuration> |
| 623 | + </execution> |
| 624 | + <execution> |
| 625 | + <id>generate-testcaserun-started-from-schema</id> |
530 | 626 | <phase>generate-sources</phase> |
531 | 627 | <goals> |
532 | 628 | <goal>generate</goal> |
533 | 629 | </goals> |
534 | 630 | <configuration> |
535 | 631 | <sourcePaths> |
536 | | - <sourcePath>${parent.project.dir}/spec/schemas/testcasefinished.json</sourcePath> |
| 632 | + <sourcePath>${parent.project.dir}/spec/schemas/testcaserunstarted.json</sourcePath> |
537 | 633 | </sourcePaths> |
538 | 634 | <outputDirectory>${sdk.project.dir}/src/main/java</outputDirectory> |
539 | | - <targetPackage>dev.cdevents.models.testcase.finished</targetPackage> |
| 635 | + <targetPackage>dev.cdevents.models.testcaserun.started</targetPackage> |
540 | 636 | <includeHashcodeAndEquals>false</includeHashcodeAndEquals> |
541 | 637 | <includeToString>false</includeToString> |
542 | 638 | </configuration> |
543 | 639 | </execution> |
544 | 640 | <execution> |
545 | | - <id>generate-testcase-queued-from-schema</id> |
| 641 | + <id>generate-testoutput-published-from-schema</id> |
546 | 642 | <phase>generate-sources</phase> |
547 | 643 | <goals> |
548 | 644 | <goal>generate</goal> |
549 | 645 | </goals> |
550 | 646 | <configuration> |
551 | 647 | <sourcePaths> |
552 | | - <sourcePath>${parent.project.dir}/spec/schemas/testcasequeued.json</sourcePath> |
| 648 | + <sourcePath>${parent.project.dir}/spec/schemas/testoutputpublished.json</sourcePath> |
553 | 649 | </sourcePaths> |
554 | 650 | <outputDirectory>${sdk.project.dir}/src/main/java</outputDirectory> |
555 | | - <targetPackage>dev.cdevents.models.testcase.queued</targetPackage> |
| 651 | + <targetPackage>dev.cdevents.models.testoutput.published</targetPackage> |
556 | 652 | <includeHashcodeAndEquals>false</includeHashcodeAndEquals> |
557 | 653 | <includeToString>false</includeToString> |
558 | 654 | </configuration> |
559 | 655 | </execution> |
560 | 656 | <execution> |
561 | | - <id>generate-testcase-started-from-schema</id> |
| 657 | + <id>generate-testsuiterun-finished-from-schema</id> |
562 | 658 | <phase>generate-sources</phase> |
563 | 659 | <goals> |
564 | 660 | <goal>generate</goal> |
565 | 661 | </goals> |
566 | 662 | <configuration> |
567 | 663 | <sourcePaths> |
568 | | - <sourcePath>${parent.project.dir}/spec/schemas/testcasestarted.json</sourcePath> |
| 664 | + <sourcePath>${parent.project.dir}/spec/schemas/testsuiterunfinished.json</sourcePath> |
569 | 665 | </sourcePaths> |
570 | 666 | <outputDirectory>${sdk.project.dir}/src/main/java</outputDirectory> |
571 | | - <targetPackage>dev.cdevents.models.testcase.started</targetPackage> |
| 667 | + <targetPackage>dev.cdevents.models.testsuiterun.finished</targetPackage> |
572 | 668 | <includeHashcodeAndEquals>false</includeHashcodeAndEquals> |
573 | 669 | <includeToString>false</includeToString> |
574 | 670 | </configuration> |
575 | 671 | </execution> |
576 | 672 | <execution> |
577 | | - <id>generate-testsuite-finished-from-schema</id> |
| 673 | + <id>generate-testsuiterun-queued-from-schema</id> |
578 | 674 | <phase>generate-sources</phase> |
579 | 675 | <goals> |
580 | 676 | <goal>generate</goal> |
581 | 677 | </goals> |
582 | 678 | <configuration> |
583 | 679 | <sourcePaths> |
584 | | - <sourcePath>${parent.project.dir}/spec/schemas/testsuitefinished.json</sourcePath> |
| 680 | + <sourcePath>${parent.project.dir}/spec/schemas/testsuiterunqueued.json</sourcePath> |
585 | 681 | </sourcePaths> |
586 | 682 | <outputDirectory>${sdk.project.dir}/src/main/java</outputDirectory> |
587 | | - <targetPackage>dev.cdevents.models.testsuite.finished</targetPackage> |
| 683 | + <targetPackage>dev.cdevents.models.testsuiterun.queued</targetPackage> |
588 | 684 | <includeHashcodeAndEquals>false</includeHashcodeAndEquals> |
589 | 685 | <includeToString>false</includeToString> |
590 | 686 | </configuration> |
591 | 687 | </execution> |
592 | 688 | <execution> |
593 | | - <id>generate-testsuite-started-from-schema</id> |
| 689 | + <id>generate-testsuiterun-started-from-schema</id> |
594 | 690 | <phase>generate-sources</phase> |
595 | 691 | <goals> |
596 | 692 | <goal>generate</goal> |
597 | 693 | </goals> |
598 | 694 | <configuration> |
599 | 695 | <sourcePaths> |
600 | | - <sourcePath>${parent.project.dir}/spec/schemas/testsuitestarted.json</sourcePath> |
| 696 | + <sourcePath>${parent.project.dir}/spec/schemas/testsuiterunstarted.json</sourcePath> |
601 | 697 | </sourcePaths> |
602 | 698 | <outputDirectory>${sdk.project.dir}/src/main/java</outputDirectory> |
603 | | - <targetPackage>dev.cdevents.models.testsuite.started</targetPackage> |
| 699 | + <targetPackage>dev.cdevents.models.testsuiterun.started</targetPackage> |
604 | 700 | <includeHashcodeAndEquals>false</includeHashcodeAndEquals> |
605 | 701 | <includeToString>false</includeToString> |
606 | 702 | </configuration> |
|
0 commit comments