├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── 1_feature_request.md │ ├── 2_enhancement_request.md │ └── 3_bug_report.md ├── dependabot.yml ├── screenshot.png ├── tools_menu.png └── workflows │ ├── publish.yml │ ├── qodana.yml │ ├── test.yml │ └── update-gradle-wrapper.yml ├── .gitignore ├── .run ├── Build plugin (also for hot reload).run.xml ├── Run IDE for UI Tests.run.xml ├── Run IDE with Plugin.run.xml ├── Run Plugin Tests.run.xml ├── Run Plugin Verification.run.xml └── Run Qodana.run.xml ├── .sentry ├── CHANGELOG.md ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jdk └── mockJDK-11 │ └── jre │ └── lib │ ├── annotations.jar │ └── rt.jar └── src ├── main ├── kotlin │ └── org │ │ └── axonframework │ │ └── intellij │ │ └── ide │ │ └── plugin │ │ ├── AxonIcons.kt │ │ ├── actions │ │ ├── AxonReferenceGuideAction.kt │ │ └── ReportFeedbackAction.kt │ │ ├── api │ │ ├── AxonAnnotation.kt │ │ ├── ClassReferenceHierarcyItem.kt │ │ ├── Entity.kt │ │ ├── Handler.kt │ │ ├── MessageCreator.kt │ │ ├── MessageHandlerType.kt │ │ ├── MessageType.kt │ │ └── PsiElementWrapper.kt │ │ ├── inspections │ │ ├── aggregate │ │ │ ├── JavaAggregateConstructorInspection.kt │ │ │ ├── JavaAggregateIdInspection.kt │ │ │ ├── JavaAggregateMemberRoutingKeyInspection.kt │ │ │ ├── JavaMissingRoutingKeyOnAggregateMemberInspection.kt │ │ │ ├── KotlinAggregateConstructorInspection.kt │ │ │ ├── KotlinAggregateIdInspection.kt │ │ │ ├── KotlinAggregateMemberRoutingKeyInspection.kt │ │ │ ├── KotlinMissingRoutingKeyOnAggregateMemberInspection.kt │ │ │ └── descriptions.kt │ │ └── saga │ │ │ ├── JavaSagaAssociationPropertyInspection.kt │ │ │ ├── KotlinSagaAssociationPropertyInspection.kt │ │ │ └── descriptions.kt │ │ ├── markers │ │ ├── AxonNavigationTargetRenderer.kt │ │ ├── ClassLineMarkerProvider.kt │ │ ├── handlers │ │ │ ├── AbstractHandlerLineMarkerProvider.kt │ │ │ ├── CommonHandlerMethodLineMarkerProvider.kt │ │ │ └── DeadlineHandlerMethodLineMarkerProvider.kt │ │ └── publishers │ │ │ ├── DeadlinePublisherLineMarkerProvider.kt │ │ │ └── PublishMethodLineMarkerProvider.kt │ │ ├── resolving │ │ ├── AggregateStructureResolver.kt │ │ ├── AnnotationResolver.kt │ │ ├── DeadlineManagerMethodResolver.kt │ │ ├── DeadlineManagerReferenceResolver.kt │ │ ├── MessageCreationResolver.kt │ │ ├── MessageHandlerResolver.kt │ │ ├── ResolvedAnnotation.kt │ │ ├── creators │ │ │ └── DefaultMessageCreator.kt │ │ └── handlers │ │ │ ├── searchers │ │ │ ├── AbstractHandlerSearcher.kt │ │ │ ├── AggregateConstructorSearcher.kt │ │ │ ├── CommandHandlerSearcher.kt │ │ │ ├── DeadlineHandlerSearcher.kt │ │ │ ├── EventHandlerSearcher.kt │ │ │ ├── EventSourcingHandlerSearcher.kt │ │ │ ├── QueryHandlerSearcher.kt │ │ │ └── SagaEventHandlerSearcher.kt │ │ │ └── types │ │ │ ├── AggregateConstructor.kt │ │ │ ├── CommandHandler.kt │ │ │ ├── DeadlineHandler.kt │ │ │ ├── EventHandler.kt │ │ │ ├── EventSourcingHandler.kt │ │ │ ├── QueryHandler.kt │ │ │ └── SagaEventHandler.kt │ │ ├── support │ │ ├── AxonErrorReportSubmitter.kt │ │ └── ReportingService.kt │ │ ├── usage │ │ ├── AxonDependency.kt │ │ ├── AxonImplicitUsageProvider.kt │ │ └── AxonVersionService.kt │ │ └── util │ │ ├── CacheUtils.kt │ │ ├── PSiProcessingUtils.kt │ │ ├── PsiAnnotationUtils.kt │ │ ├── PsiMethodUtils.kt │ │ └── PsiViewUtils.kt └── resources │ ├── META-INF │ ├── plugin.xml │ ├── pluginIcon.svg │ └── pluginIcon_dark.svg │ └── icons │ ├── handler.svg │ ├── handler_intercepted.svg │ ├── interceptor.svg │ └── publisher.svg └── test └── kotlin └── org └── axonframework └── intellij └── ide └── plugin ├── AbstractAxonFixtureTestCase.kt ├── creators ├── DeadlineCreatorTests.kt └── MessageCreatorResolverTest.kt ├── handlers └── searchers │ ├── AggregateConstructorSearcherTest.kt │ ├── CommandHandlerSearcherTest.kt │ ├── DeadlineHandlerSearcherTest.kt │ ├── EventHandlerSearcherTest.kt │ ├── EventSourcingHandlerSearcherTest.kt │ └── QueryHandlerSearcherTest.kt ├── inspections ├── aggregate │ ├── JavaAggregateConstructorInspectionTest.kt │ ├── JavaAggregateIdInspectionTest.kt │ ├── JavaAggregateMemberRoutingKeyInspectionTest.kt │ ├── JavaMissingRoutingKeyOnAggregateMemberInspectionTest.kt │ ├── KotlinAggregateConstructorInspectionTest.kt │ ├── KotlinAggregateIdInspectionTest.kt │ ├── KotlinAggregateMemberRoutingKeyInspectionTest.kt │ └── KotlinMissingRoutingKeyOnAggregateMemberInspectionTest.kt └── saga │ ├── JavaSagaAssociationPropertyInspectionTest.kt │ └── KotlinSagaAssociationPropertyInspectionTest.kt ├── markers ├── ClassLineMarkerProviderTest.kt ├── handlers │ ├── CommonHandlerMethodLineMarkerProviderTest.kt │ └── DeadlineHandlerMethodLineMarkerProviderTest.kt └── publishers │ ├── DeadlinePublisherLineMarkerProviderTest.kt │ └── PublishMethodLineMarkerProviderTest.kt ├── specifics ├── ConstantsInAnnotationTest.kt ├── ExceptionCasesTests.kt ├── InheritanceTest.kt └── RecursiveAnnotationTest.kt └── util └── ProjectUtilsKtTest.kt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1_feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.github/ISSUE_TEMPLATE/1_feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_enhancement_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.github/ISSUE_TEMPLATE/2_enhancement_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3_bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.github/ISSUE_TEMPLATE/3_bug_report.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.github/screenshot.png -------------------------------------------------------------------------------- /.github/tools_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.github/tools_menu.png -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/qodana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.github/workflows/qodana.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update-gradle-wrapper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.github/workflows/update-gradle-wrapper.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.run/Build plugin (also for hot reload).run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.run/Build plugin (also for hot reload).run.xml -------------------------------------------------------------------------------- /.run/Run IDE for UI Tests.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.run/Run IDE for UI Tests.run.xml -------------------------------------------------------------------------------- /.run/Run IDE with Plugin.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.run/Run IDE with Plugin.run.xml -------------------------------------------------------------------------------- /.run/Run Plugin Tests.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.run/Run Plugin Tests.run.xml -------------------------------------------------------------------------------- /.run/Run Plugin Verification.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.run/Run Plugin Verification.run.xml -------------------------------------------------------------------------------- /.run/Run Qodana.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.run/Run Qodana.run.xml -------------------------------------------------------------------------------- /.sentry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/.sentry -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jdk/mockJDK-11/jre/lib/annotations.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/jdk/mockJDK-11/jre/lib/annotations.jar -------------------------------------------------------------------------------- /jdk/mockJDK-11/jre/lib/rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/jdk/mockJDK-11/jre/lib/rt.jar -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/AxonIcons.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/AxonIcons.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/actions/AxonReferenceGuideAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/actions/AxonReferenceGuideAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/actions/ReportFeedbackAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/actions/ReportFeedbackAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/api/AxonAnnotation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/api/AxonAnnotation.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/api/ClassReferenceHierarcyItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/api/ClassReferenceHierarcyItem.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/api/Entity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/api/Entity.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/api/Handler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/api/Handler.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/api/MessageCreator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/api/MessageCreator.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/api/MessageHandlerType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/api/MessageHandlerType.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/api/MessageType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/api/MessageType.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/api/PsiElementWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/api/PsiElementWrapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/JavaAggregateConstructorInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/JavaAggregateConstructorInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/JavaAggregateIdInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/JavaAggregateIdInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/JavaAggregateMemberRoutingKeyInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/JavaAggregateMemberRoutingKeyInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/JavaMissingRoutingKeyOnAggregateMemberInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/JavaMissingRoutingKeyOnAggregateMemberInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/KotlinAggregateConstructorInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/KotlinAggregateConstructorInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/KotlinAggregateIdInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/KotlinAggregateIdInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/KotlinAggregateMemberRoutingKeyInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/KotlinAggregateMemberRoutingKeyInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/KotlinMissingRoutingKeyOnAggregateMemberInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/KotlinMissingRoutingKeyOnAggregateMemberInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/descriptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/descriptions.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/saga/JavaSagaAssociationPropertyInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/saga/JavaSagaAssociationPropertyInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/saga/KotlinSagaAssociationPropertyInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/saga/KotlinSagaAssociationPropertyInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/saga/descriptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/inspections/saga/descriptions.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/markers/AxonNavigationTargetRenderer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/markers/AxonNavigationTargetRenderer.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/markers/ClassLineMarkerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/markers/ClassLineMarkerProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/markers/handlers/AbstractHandlerLineMarkerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/markers/handlers/AbstractHandlerLineMarkerProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/markers/handlers/CommonHandlerMethodLineMarkerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/markers/handlers/CommonHandlerMethodLineMarkerProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/markers/handlers/DeadlineHandlerMethodLineMarkerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/markers/handlers/DeadlineHandlerMethodLineMarkerProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/markers/publishers/DeadlinePublisherLineMarkerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/markers/publishers/DeadlinePublisherLineMarkerProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/markers/publishers/PublishMethodLineMarkerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/markers/publishers/PublishMethodLineMarkerProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/AggregateStructureResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/AggregateStructureResolver.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/AnnotationResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/AnnotationResolver.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/DeadlineManagerMethodResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/DeadlineManagerMethodResolver.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/DeadlineManagerReferenceResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/DeadlineManagerReferenceResolver.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/MessageCreationResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/MessageCreationResolver.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/MessageHandlerResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/MessageHandlerResolver.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/ResolvedAnnotation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/ResolvedAnnotation.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/creators/DefaultMessageCreator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/creators/DefaultMessageCreator.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/searchers/AbstractHandlerSearcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/searchers/AbstractHandlerSearcher.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/searchers/AggregateConstructorSearcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/searchers/AggregateConstructorSearcher.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/searchers/CommandHandlerSearcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/searchers/CommandHandlerSearcher.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/searchers/DeadlineHandlerSearcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/searchers/DeadlineHandlerSearcher.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/searchers/EventHandlerSearcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/searchers/EventHandlerSearcher.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/searchers/EventSourcingHandlerSearcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/searchers/EventSourcingHandlerSearcher.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/searchers/QueryHandlerSearcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/searchers/QueryHandlerSearcher.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/searchers/SagaEventHandlerSearcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/searchers/SagaEventHandlerSearcher.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/types/AggregateConstructor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/types/AggregateConstructor.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/types/CommandHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/types/CommandHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/types/DeadlineHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/types/DeadlineHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/types/EventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/types/EventHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/types/EventSourcingHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/types/EventSourcingHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/types/QueryHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/types/QueryHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/types/SagaEventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/resolving/handlers/types/SagaEventHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/support/AxonErrorReportSubmitter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/support/AxonErrorReportSubmitter.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/support/ReportingService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/support/ReportingService.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/usage/AxonDependency.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/usage/AxonDependency.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/usage/AxonImplicitUsageProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/usage/AxonImplicitUsageProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/usage/AxonVersionService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/usage/AxonVersionService.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/util/CacheUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/util/CacheUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/util/PSiProcessingUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/util/PSiProcessingUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/util/PsiAnnotationUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/util/PsiAnnotationUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/util/PsiMethodUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/util/PsiMethodUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/org/axonframework/intellij/ide/plugin/util/PsiViewUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/kotlin/org/axonframework/intellij/ide/plugin/util/PsiViewUtils.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /src/main/resources/META-INF/pluginIcon_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/resources/META-INF/pluginIcon_dark.svg -------------------------------------------------------------------------------- /src/main/resources/icons/handler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/resources/icons/handler.svg -------------------------------------------------------------------------------- /src/main/resources/icons/handler_intercepted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/resources/icons/handler_intercepted.svg -------------------------------------------------------------------------------- /src/main/resources/icons/interceptor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/resources/icons/interceptor.svg -------------------------------------------------------------------------------- /src/main/resources/icons/publisher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/main/resources/icons/publisher.svg -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/AbstractAxonFixtureTestCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/AbstractAxonFixtureTestCase.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/creators/DeadlineCreatorTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/creators/DeadlineCreatorTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/creators/MessageCreatorResolverTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/creators/MessageCreatorResolverTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/handlers/searchers/AggregateConstructorSearcherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/handlers/searchers/AggregateConstructorSearcherTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/handlers/searchers/CommandHandlerSearcherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/handlers/searchers/CommandHandlerSearcherTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/handlers/searchers/DeadlineHandlerSearcherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/handlers/searchers/DeadlineHandlerSearcherTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/handlers/searchers/EventHandlerSearcherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/handlers/searchers/EventHandlerSearcherTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/handlers/searchers/EventSourcingHandlerSearcherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/handlers/searchers/EventSourcingHandlerSearcherTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/handlers/searchers/QueryHandlerSearcherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/handlers/searchers/QueryHandlerSearcherTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/JavaAggregateConstructorInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/JavaAggregateConstructorInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/JavaAggregateIdInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/JavaAggregateIdInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/JavaAggregateMemberRoutingKeyInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/JavaAggregateMemberRoutingKeyInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/JavaMissingRoutingKeyOnAggregateMemberInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/JavaMissingRoutingKeyOnAggregateMemberInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/KotlinAggregateConstructorInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/KotlinAggregateConstructorInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/KotlinAggregateIdInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/KotlinAggregateIdInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/KotlinAggregateMemberRoutingKeyInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/KotlinAggregateMemberRoutingKeyInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/KotlinMissingRoutingKeyOnAggregateMemberInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/aggregate/KotlinMissingRoutingKeyOnAggregateMemberInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/saga/JavaSagaAssociationPropertyInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/saga/JavaSagaAssociationPropertyInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/saga/KotlinSagaAssociationPropertyInspectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/inspections/saga/KotlinSagaAssociationPropertyInspectionTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/markers/ClassLineMarkerProviderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/markers/ClassLineMarkerProviderTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/markers/handlers/CommonHandlerMethodLineMarkerProviderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/markers/handlers/CommonHandlerMethodLineMarkerProviderTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/markers/handlers/DeadlineHandlerMethodLineMarkerProviderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/markers/handlers/DeadlineHandlerMethodLineMarkerProviderTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/markers/publishers/DeadlinePublisherLineMarkerProviderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/markers/publishers/DeadlinePublisherLineMarkerProviderTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/markers/publishers/PublishMethodLineMarkerProviderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/markers/publishers/PublishMethodLineMarkerProviderTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/specifics/ConstantsInAnnotationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/specifics/ConstantsInAnnotationTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/specifics/ExceptionCasesTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/specifics/ExceptionCasesTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/specifics/InheritanceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/specifics/InheritanceTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/specifics/RecursiveAnnotationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/specifics/RecursiveAnnotationTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/org/axonframework/intellij/ide/plugin/util/ProjectUtilsKtTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxonFramework/IdeaPlugin/HEAD/src/test/kotlin/org/axonframework/intellij/ide/plugin/util/ProjectUtilsKtTest.kt --------------------------------------------------------------------------------