├── .github ├── readme-logo1.png ├── run-test.gif └── workflows │ └── build.yaml ├── .gitignore ├── .run └── Run IDE with Plugin.run.xml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── gmaven ├── build.gradle.kts └── src │ ├── main │ ├── java │ │ ├── icons │ │ │ └── GMavenIcons.java │ │ └── ru │ │ │ └── rzn │ │ │ └── gmyasoedov │ │ │ └── gmaven │ │ │ ├── GMavenConstants.java │ │ │ ├── MavenManager.java │ │ │ ├── bundle │ │ │ └── GBundle.java │ │ │ ├── execution │ │ │ ├── GMavenExternalTaskConfigurationType.java │ │ │ ├── GMavenRunConfiguration.java │ │ │ └── GMavenRuntimeConfigurationProducer.java │ │ │ ├── extensionpoints │ │ │ └── plugin │ │ │ │ ├── CompilerData.java │ │ │ │ ├── MavenCompilerFullImportPlugin.java │ │ │ │ └── MavenFullImportPlugin.java │ │ │ ├── plugins │ │ │ └── MavenPluginDescription.java │ │ │ ├── project │ │ │ ├── externalSystem │ │ │ │ ├── model │ │ │ │ │ ├── DependencyAnalyzerData.java │ │ │ │ │ ├── LifecycleData.java │ │ │ │ │ ├── PluginData.java │ │ │ │ │ ├── ProfileData.java │ │ │ │ │ └── SourceSetData.java │ │ │ │ └── view │ │ │ │ │ ├── DependencyAnalyzerNode.java │ │ │ │ │ ├── LifecycleNodes.java │ │ │ │ │ ├── MavenTaskNode.java │ │ │ │ │ ├── MavenTasksNode.java │ │ │ │ │ ├── PluginNodes.java │ │ │ │ │ ├── ProfileNode.java │ │ │ │ │ └── ProfileNodes.java │ │ │ └── filter │ │ │ │ └── MavenConsoleFilterProvider.java │ │ │ ├── projectView │ │ │ └── GMavenTreeStructureProvider.java │ │ │ ├── settings │ │ │ ├── DelegatingMavenSettingsListenerAdapter.java │ │ │ ├── DistributionSettings.java │ │ │ ├── DistributionType.java │ │ │ ├── MavenExecutionSettings.java │ │ │ ├── MavenExecutionWorkspace.java │ │ │ ├── MavenSettings.java │ │ │ ├── MavenSettingsListener.java │ │ │ ├── ProfileExecution.java │ │ │ ├── ProjectExecution.java │ │ │ ├── ProjectSettingsControlBuilder.java │ │ │ └── SystemSettingsControlBuilder.java │ │ │ ├── utils │ │ │ ├── MavenArtifactUtil.java │ │ │ ├── MavenFileTemplateGroupFactory.java │ │ │ ├── MavenJDOMUtil.java │ │ │ ├── MavenLog.java │ │ │ └── MavenUtils.java │ │ │ └── wizard │ │ │ └── GMavenModuleBuilderHelper.java │ ├── kotlin │ │ └── ru │ │ │ └── rzn │ │ │ └── gmyasoedov │ │ │ └── gmaven │ │ │ ├── dom │ │ │ ├── GMavenSchemaProvider.kt │ │ │ ├── MavenArtifactIdXmlPsiReferenceContributor.kt │ │ │ ├── MavenPropertiesXmlPsiReferenceContributor.kt │ │ │ ├── PomFileTypeOverrider.kt │ │ │ ├── PomXmlDomGutterAnnotator.kt │ │ │ ├── XmlPsiUtil.kt │ │ │ ├── completion │ │ │ │ ├── MavenCoordinateCompletionContributor.kt │ │ │ │ └── PomXmlCompletionTagListenerContributor.kt │ │ │ └── reference │ │ │ │ ├── MavenArtifactIdPsiReference.kt │ │ │ │ └── MavenPropertyPsiReference.kt │ │ │ ├── execution │ │ │ └── OrderEnumerationHandler.kt │ │ │ ├── extensionpoints │ │ │ └── plugin │ │ │ │ ├── ApacheMavenCompilerPlugin.kt │ │ │ │ ├── BuildHelperMavenPlugin.kt │ │ │ │ ├── CodehausAspectjMavenPlugin.kt │ │ │ │ ├── DevAspectjMavenPlugin.kt │ │ │ │ ├── GroovyMavenPlugin.kt │ │ │ │ ├── GroovyMavenPlusPlugin.kt │ │ │ │ ├── MavenCompilerImporterUtils.kt │ │ │ │ ├── TychoCompilerPlugin.kt │ │ │ │ └── kotlin │ │ │ │ ├── KotlinMavenPlugin.kt │ │ │ │ └── KotlinMavenPluginData.kt │ │ │ ├── project │ │ │ ├── DependencyDataConverter.kt │ │ │ ├── GMavenAutoImportAware.kt │ │ │ ├── MavenProjectResolver.kt │ │ │ ├── ModuleDataConverter.kt │ │ │ ├── ProjectResolverUtils.kt │ │ │ ├── action │ │ │ │ ├── AndroidRefreshAllExternalProjectsAction.kt │ │ │ │ ├── ChangeProfileStateAction.kt │ │ │ │ ├── EffectivePomAction.kt │ │ │ │ ├── GMavenToggleAction.kt │ │ │ │ ├── IgnoreMavenProjectAction.kt │ │ │ │ ├── ImportProjectFromBuildFIleAction.kt │ │ │ │ ├── OfflineModeAction.kt │ │ │ │ ├── OpenLocalRepoAction.kt │ │ │ │ ├── ReadonlyAction.kt │ │ │ │ ├── ReloadProjectWithPluginsAction.kt │ │ │ │ ├── ReloadProjectWithSourcesAction.kt │ │ │ │ ├── ResetProfileStateToDefaultAction.kt │ │ │ │ ├── RunExecJavaMainAction.kt │ │ │ │ ├── RunSimplePomTaskAction.kt │ │ │ │ ├── RunTasksAction.kt │ │ │ │ ├── RunTestAction.kt │ │ │ │ ├── ShowAllPhasesAction.kt │ │ │ │ ├── SkipTestsAction.kt │ │ │ │ └── UpdateSnapshotAction.kt │ │ │ ├── dependencyanalyzer │ │ │ │ ├── DependencyAnalyzerAction.kt │ │ │ │ ├── GDependencyAnalyzerContributor.kt │ │ │ │ ├── MavenDependencyAnalyzerExtension.kt │ │ │ │ ├── MavenDependencyAnalyzerGoToAction.kt │ │ │ │ └── MavenDependencyAnalyzerOpenConfigAction.kt │ │ │ ├── externalSystem │ │ │ │ ├── model │ │ │ │ │ ├── CompilerPluginData.kt │ │ │ │ │ ├── LifecycleMaven4Data.kt │ │ │ │ │ ├── MainJavaCompilerData.kt │ │ │ │ │ ├── MavenContentRoot.kt │ │ │ │ │ ├── MavenGeneratedContentRoot.kt │ │ │ │ │ └── PluginContentRoots.kt │ │ │ │ ├── notification │ │ │ │ │ ├── OpenGMavenSettingsCallback.kt │ │ │ │ │ └── ShowFullLogCallback.kt │ │ │ │ └── service │ │ │ │ │ ├── GMavenNotificationExtension.kt │ │ │ │ │ ├── GMavenSystemConfigLocator.kt │ │ │ │ │ ├── MavenAttachSourcesProvider.kt │ │ │ │ │ └── UnlinkedProjectAware.kt │ │ │ ├── importing │ │ │ │ ├── CompilerPluginDataService.kt │ │ │ │ ├── MainJavaCompilerDataService.kt │ │ │ │ ├── ProjectSettingsLocalRepoDataService.kt │ │ │ │ ├── SourceSetDataService.kt │ │ │ │ └── kotlin │ │ │ │ │ ├── AbstractMavenImportHandler.kt │ │ │ │ │ ├── AllOpenMavenProjectImportHandler.kt │ │ │ │ │ ├── KotlinMavenPluginDataService.kt │ │ │ │ │ └── NoArgMavenProjectImportHandler.kt │ │ │ ├── policy │ │ │ │ └── ReadProjectResolverPolicy.kt │ │ │ ├── process │ │ │ │ ├── BaseMavenCommandLine.kt │ │ │ │ ├── GOSProcessHandler.kt │ │ │ │ └── WslBaseMavenCommandLine.kt │ │ │ ├── profile │ │ │ │ └── ProjectProfileState.kt │ │ │ ├── task │ │ │ │ ├── GMavenBeforeRunTaskProvider.kt │ │ │ │ ├── GMavenCommandLineInfo.kt │ │ │ │ ├── GMavenRunConfigurationExtension.kt │ │ │ │ ├── Lifecycle.kt │ │ │ │ ├── MavenCommandLineOptions.kt │ │ │ │ ├── MavenTaskManager.kt │ │ │ │ └── Phase.kt │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDistribution.kt │ │ │ │ └── MvnDotProperties.kt │ │ │ ├── server │ │ │ ├── GServerHelper2.kt │ │ │ ├── GServerRequest.kt │ │ │ └── wsl │ │ │ │ └── WslPathTransformer.kt │ │ │ ├── settings │ │ │ ├── GMavenConfigurable.kt │ │ │ ├── MavenLocalSettings.kt │ │ │ ├── MavenProjectSettings.kt │ │ │ ├── ProjectSettingsControl.kt │ │ │ └── debug │ │ │ │ ├── MavenDebugSettingsControl.kt │ │ │ │ └── MavenDebugSettingsState.kt │ │ │ ├── ui │ │ │ ├── GMavenIconProvider.kt │ │ │ ├── MavenExternalViewContributor.kt │ │ │ ├── MavenIconProvider.kt │ │ │ └── MavenToolWindowFactory.kt │ │ │ ├── util │ │ │ ├── ApplicationUtil.kt │ │ │ ├── CachedModuleDataService.kt │ │ │ ├── ExecutionSettingsUtil.kt │ │ │ ├── ExtensionUtils.kt │ │ │ ├── GMavenNotification.kt │ │ │ ├── IndicatorUtil.kt │ │ │ ├── MavenCentralClient.kt │ │ │ ├── MavenJvmResolutionUtil.kt │ │ │ ├── MavenPathUtil.kt │ │ │ └── MvnUtil.kt │ │ │ └── wizard │ │ │ ├── GMavenNewProjectWizardStep.kt │ │ │ ├── GMavenProjectImportProvider.kt │ │ │ ├── GOpenProjectProvider.kt │ │ │ ├── GProjectOpenProcessor.kt │ │ │ ├── JavaNewProjectWizardData.kt │ │ │ ├── LinkMavenProjectImportBuilder.kt │ │ │ ├── MavenNewProjectWizard.kt │ │ │ ├── MavenNewProjectWizardData.kt │ │ │ └── WizardUtils.kt │ └── resources │ │ ├── META-INF │ │ ├── groovy-support.xml │ │ ├── kotlin-support.xml │ │ └── plugin.xml │ │ ├── fileTemplates │ │ └── j2ee │ │ │ ├── GMavenProject.xml.ft │ │ │ └── GMavenProject.xml.html │ │ ├── images │ │ ├── executeMavenGoal.svg │ │ ├── executeMavenGoal_dark.svg │ │ ├── mavenIgnored.svg │ │ ├── mavenIgnored_dark.svg │ │ ├── mavenLoadChanges.svg │ │ ├── mavenLoadChanges_dark.svg │ │ ├── mavenParentProjects.svg │ │ ├── mavenParentProjects_dark.svg │ │ ├── mavenProject.svg │ │ ├── mavenProject_dark.svg │ │ ├── repositoryLibraryLogo.svg │ │ └── toolwindow │ │ │ ├── maven.svg │ │ │ ├── maven@20x20.svg │ │ │ ├── maven@20x20_dark.svg │ │ │ └── maven_dark.svg │ │ ├── messages │ │ └── GBundle.properties │ │ └── schemas │ │ ├── maven-4.0.0.xsd │ │ └── settings-1.2.0.xsd │ └── test │ └── kotlin │ └── ru │ └── rzn │ └── gmyasoedov │ └── gmaven │ ├── MavenImportingTestCase.kt │ ├── MavenTestCase.kt │ ├── project │ ├── AspectJMavenPluginTest.kt │ ├── BuildHelperMavenPluginTest.kt │ ├── FirstRunTest.kt │ ├── GroovyImporterTest.kt │ ├── KotlinMavenPluginImportTest.kt │ ├── MavenCompilerPluginTest.kt │ ├── MavenModuleImportTest.kt │ ├── MavenSeparateModuleTest.kt │ ├── ReadonlyImportTest.kt │ └── task │ │ ├── MavenDebugParamsTest.kt │ │ └── MavenTaskManagerTest.kt │ └── reflection │ └── ReflectionCompatibilityTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── maven-ext-event-handler ├── build.gradle.kts └── src │ └── main │ ├── java │ └── ru │ │ └── rzn │ │ └── gmyasoedov │ │ └── event │ │ └── spy │ │ ├── GMavenEventSpyConstants.java │ │ ├── GMavenExecutionEventSpy.java │ │ ├── MavenErrorConverter.java │ │ └── model │ │ └── BuildErrors.java │ └── resources │ └── META-INF │ └── sisu │ └── javax.inject.Named ├── server-api ├── build.gradle.kts └── src │ └── main │ └── java │ └── ru │ └── rzn │ └── gmyasoedov │ ├── maven │ └── plugin │ │ └── reader │ │ └── model │ │ ├── BuildErrors.java │ │ ├── MavenArtifact.java │ │ ├── MavenArtifactNode.java │ │ ├── MavenArtifactState.java │ │ ├── MavenId.java │ │ ├── MavenListResult.java │ │ ├── MavenMapResult.java │ │ ├── MavenPlugin.java │ │ ├── MavenProfile.java │ │ ├── MavenProject.java │ │ ├── MavenProjectContainer.java │ │ ├── MavenRemoteRepository.java │ │ ├── MavenResource.java │ │ ├── MavenSettings.java │ │ ├── ObjectUtils.java │ │ ├── PluginBody.java │ │ ├── PluginExecution.java │ │ ├── SimpleMavenId.java │ │ └── tree │ │ ├── DependencyTreeNode.java │ │ └── MavenProjectDependencyTree.java │ └── serverapi │ ├── GMavenServer.java │ ├── GServerUtils.java │ └── model │ ├── ObjectUtils.java │ └── request │ └── GetModelRequest.java └── settings.gradle.kts /.github/readme-logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/.github/readme-logo1.png -------------------------------------------------------------------------------- /.github/run-test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/.github/run-test.gif -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.run/Run IDE with Plugin.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/.run/Run IDE with Plugin.run.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/README.md -------------------------------------------------------------------------------- /gmaven/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/build.gradle.kts -------------------------------------------------------------------------------- /gmaven/src/main/java/icons/GMavenIcons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/icons/GMavenIcons.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/GMavenConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/GMavenConstants.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/MavenManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/MavenManager.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/bundle/GBundle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/bundle/GBundle.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/execution/GMavenExternalTaskConfigurationType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/execution/GMavenExternalTaskConfigurationType.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/execution/GMavenRunConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/execution/GMavenRunConfiguration.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/execution/GMavenRuntimeConfigurationProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/execution/GMavenRuntimeConfigurationProducer.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/CompilerData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/CompilerData.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/MavenCompilerFullImportPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/MavenCompilerFullImportPlugin.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/MavenFullImportPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/MavenFullImportPlugin.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/plugins/MavenPluginDescription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/plugins/MavenPluginDescription.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/DependencyAnalyzerData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/DependencyAnalyzerData.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/LifecycleData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/LifecycleData.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/PluginData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/PluginData.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/ProfileData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/ProfileData.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/SourceSetData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/SourceSetData.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/view/DependencyAnalyzerNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/view/DependencyAnalyzerNode.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/view/LifecycleNodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/view/LifecycleNodes.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/view/MavenTaskNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/view/MavenTaskNode.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/view/MavenTasksNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/view/MavenTasksNode.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/view/PluginNodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/view/PluginNodes.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/view/ProfileNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/view/ProfileNode.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/view/ProfileNodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/externalSystem/view/ProfileNodes.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/filter/MavenConsoleFilterProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/project/filter/MavenConsoleFilterProvider.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/projectView/GMavenTreeStructureProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/projectView/GMavenTreeStructureProvider.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/DelegatingMavenSettingsListenerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/DelegatingMavenSettingsListenerAdapter.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/DistributionSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/DistributionSettings.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/DistributionType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/DistributionType.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/MavenExecutionSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/MavenExecutionSettings.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/MavenExecutionWorkspace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/MavenExecutionWorkspace.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/MavenSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/MavenSettings.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/MavenSettingsListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/MavenSettingsListener.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/ProfileExecution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/ProfileExecution.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/ProjectExecution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/ProjectExecution.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/ProjectSettingsControlBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/ProjectSettingsControlBuilder.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/SystemSettingsControlBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/settings/SystemSettingsControlBuilder.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/utils/MavenArtifactUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/utils/MavenArtifactUtil.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/utils/MavenFileTemplateGroupFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/utils/MavenFileTemplateGroupFactory.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/utils/MavenJDOMUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/utils/MavenJDOMUtil.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/utils/MavenLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/utils/MavenLog.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/utils/MavenUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/utils/MavenUtils.java -------------------------------------------------------------------------------- /gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/wizard/GMavenModuleBuilderHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/java/ru/rzn/gmyasoedov/gmaven/wizard/GMavenModuleBuilderHelper.java -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/GMavenSchemaProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/GMavenSchemaProvider.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/MavenArtifactIdXmlPsiReferenceContributor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/MavenArtifactIdXmlPsiReferenceContributor.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/MavenPropertiesXmlPsiReferenceContributor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/MavenPropertiesXmlPsiReferenceContributor.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/PomFileTypeOverrider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/PomFileTypeOverrider.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/PomXmlDomGutterAnnotator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/PomXmlDomGutterAnnotator.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/XmlPsiUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/XmlPsiUtil.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/completion/MavenCoordinateCompletionContributor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/completion/MavenCoordinateCompletionContributor.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/completion/PomXmlCompletionTagListenerContributor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/completion/PomXmlCompletionTagListenerContributor.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/reference/MavenArtifactIdPsiReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/reference/MavenArtifactIdPsiReference.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/reference/MavenPropertyPsiReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/dom/reference/MavenPropertyPsiReference.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/execution/OrderEnumerationHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/execution/OrderEnumerationHandler.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/ApacheMavenCompilerPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/ApacheMavenCompilerPlugin.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/BuildHelperMavenPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/BuildHelperMavenPlugin.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/CodehausAspectjMavenPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/CodehausAspectjMavenPlugin.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/DevAspectjMavenPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/DevAspectjMavenPlugin.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/GroovyMavenPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/GroovyMavenPlugin.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/GroovyMavenPlusPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/GroovyMavenPlusPlugin.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/MavenCompilerImporterUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/MavenCompilerImporterUtils.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/TychoCompilerPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/TychoCompilerPlugin.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/kotlin/KotlinMavenPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/kotlin/KotlinMavenPlugin.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/kotlin/KotlinMavenPluginData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/extensionpoints/plugin/kotlin/KotlinMavenPluginData.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/DependencyDataConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/DependencyDataConverter.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/GMavenAutoImportAware.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/GMavenAutoImportAware.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/MavenProjectResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/MavenProjectResolver.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/ModuleDataConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/ModuleDataConverter.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/ProjectResolverUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/ProjectResolverUtils.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/AndroidRefreshAllExternalProjectsAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/AndroidRefreshAllExternalProjectsAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/ChangeProfileStateAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/ChangeProfileStateAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/EffectivePomAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/EffectivePomAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/GMavenToggleAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/GMavenToggleAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/IgnoreMavenProjectAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/IgnoreMavenProjectAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/ImportProjectFromBuildFIleAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/ImportProjectFromBuildFIleAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/OfflineModeAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/OfflineModeAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/OpenLocalRepoAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/OpenLocalRepoAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/ReadonlyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/ReadonlyAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/ReloadProjectWithPluginsAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/ReloadProjectWithPluginsAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/ReloadProjectWithSourcesAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/ReloadProjectWithSourcesAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/ResetProfileStateToDefaultAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/ResetProfileStateToDefaultAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/RunExecJavaMainAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/RunExecJavaMainAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/RunSimplePomTaskAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/RunSimplePomTaskAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/RunTasksAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/RunTasksAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/RunTestAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/RunTestAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/ShowAllPhasesAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/ShowAllPhasesAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/SkipTestsAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/SkipTestsAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/UpdateSnapshotAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/action/UpdateSnapshotAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/dependencyanalyzer/DependencyAnalyzerAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/dependencyanalyzer/DependencyAnalyzerAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/dependencyanalyzer/GDependencyAnalyzerContributor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/dependencyanalyzer/GDependencyAnalyzerContributor.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/dependencyanalyzer/MavenDependencyAnalyzerExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/dependencyanalyzer/MavenDependencyAnalyzerExtension.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/dependencyanalyzer/MavenDependencyAnalyzerGoToAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/dependencyanalyzer/MavenDependencyAnalyzerGoToAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/dependencyanalyzer/MavenDependencyAnalyzerOpenConfigAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/dependencyanalyzer/MavenDependencyAnalyzerOpenConfigAction.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/CompilerPluginData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/CompilerPluginData.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/LifecycleMaven4Data.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/LifecycleMaven4Data.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/MainJavaCompilerData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/MainJavaCompilerData.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/MavenContentRoot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/MavenContentRoot.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/MavenGeneratedContentRoot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/MavenGeneratedContentRoot.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/PluginContentRoots.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/model/PluginContentRoots.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/notification/OpenGMavenSettingsCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/notification/OpenGMavenSettingsCallback.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/notification/ShowFullLogCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/notification/ShowFullLogCallback.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/service/GMavenNotificationExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/service/GMavenNotificationExtension.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/service/GMavenSystemConfigLocator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/service/GMavenSystemConfigLocator.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/service/MavenAttachSourcesProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/service/MavenAttachSourcesProvider.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/service/UnlinkedProjectAware.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/externalSystem/service/UnlinkedProjectAware.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/importing/CompilerPluginDataService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/importing/CompilerPluginDataService.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/importing/MainJavaCompilerDataService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/importing/MainJavaCompilerDataService.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/importing/ProjectSettingsLocalRepoDataService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/importing/ProjectSettingsLocalRepoDataService.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/importing/SourceSetDataService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/importing/SourceSetDataService.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/importing/kotlin/AbstractMavenImportHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/importing/kotlin/AbstractMavenImportHandler.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/importing/kotlin/AllOpenMavenProjectImportHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/importing/kotlin/AllOpenMavenProjectImportHandler.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/importing/kotlin/KotlinMavenPluginDataService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/importing/kotlin/KotlinMavenPluginDataService.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/importing/kotlin/NoArgMavenProjectImportHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/importing/kotlin/NoArgMavenProjectImportHandler.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/policy/ReadProjectResolverPolicy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/policy/ReadProjectResolverPolicy.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/process/BaseMavenCommandLine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/process/BaseMavenCommandLine.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/process/GOSProcessHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/process/GOSProcessHandler.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/process/WslBaseMavenCommandLine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/process/WslBaseMavenCommandLine.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/profile/ProjectProfileState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/profile/ProjectProfileState.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/task/GMavenBeforeRunTaskProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/task/GMavenBeforeRunTaskProvider.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/task/GMavenCommandLineInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/task/GMavenCommandLineInfo.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/task/GMavenRunConfigurationExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/task/GMavenRunConfigurationExtension.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/task/Lifecycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/task/Lifecycle.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/task/MavenCommandLineOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/task/MavenCommandLineOptions.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/task/MavenTaskManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/task/MavenTaskManager.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/task/Phase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/task/Phase.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/wrapper/MavenWrapperDistribution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/wrapper/MavenWrapperDistribution.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/wrapper/MvnDotProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/project/wrapper/MvnDotProperties.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/server/GServerHelper2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/server/GServerHelper2.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/server/GServerRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/server/GServerRequest.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/server/wsl/WslPathTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/server/wsl/WslPathTransformer.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/settings/GMavenConfigurable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/settings/GMavenConfigurable.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/settings/MavenLocalSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/settings/MavenLocalSettings.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/settings/MavenProjectSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/settings/MavenProjectSettings.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/settings/ProjectSettingsControl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/settings/ProjectSettingsControl.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/settings/debug/MavenDebugSettingsControl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/settings/debug/MavenDebugSettingsControl.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/settings/debug/MavenDebugSettingsState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/settings/debug/MavenDebugSettingsState.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/ui/GMavenIconProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/ui/GMavenIconProvider.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/ui/MavenExternalViewContributor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/ui/MavenExternalViewContributor.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/ui/MavenIconProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/ui/MavenIconProvider.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/ui/MavenToolWindowFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/ui/MavenToolWindowFactory.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/ApplicationUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/ApplicationUtil.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/CachedModuleDataService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/CachedModuleDataService.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/ExecutionSettingsUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/ExecutionSettingsUtil.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/ExtensionUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/ExtensionUtils.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/GMavenNotification.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/GMavenNotification.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/IndicatorUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/IndicatorUtil.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/MavenCentralClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/MavenCentralClient.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/MavenJvmResolutionUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/MavenJvmResolutionUtil.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/MavenPathUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/MavenPathUtil.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/MvnUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/util/MvnUtil.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/wizard/GMavenNewProjectWizardStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/wizard/GMavenNewProjectWizardStep.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/wizard/GMavenProjectImportProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/wizard/GMavenProjectImportProvider.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/wizard/GOpenProjectProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/wizard/GOpenProjectProvider.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/wizard/GProjectOpenProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/wizard/GProjectOpenProcessor.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/wizard/JavaNewProjectWizardData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/wizard/JavaNewProjectWizardData.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/wizard/LinkMavenProjectImportBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/wizard/LinkMavenProjectImportBuilder.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/wizard/MavenNewProjectWizard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/wizard/MavenNewProjectWizard.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/wizard/MavenNewProjectWizardData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/wizard/MavenNewProjectWizardData.kt -------------------------------------------------------------------------------- /gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/wizard/WizardUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/kotlin/ru/rzn/gmyasoedov/gmaven/wizard/WizardUtils.kt -------------------------------------------------------------------------------- /gmaven/src/main/resources/META-INF/groovy-support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/META-INF/groovy-support.xml -------------------------------------------------------------------------------- /gmaven/src/main/resources/META-INF/kotlin-support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/META-INF/kotlin-support.xml -------------------------------------------------------------------------------- /gmaven/src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /gmaven/src/main/resources/fileTemplates/j2ee/GMavenProject.xml.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/fileTemplates/j2ee/GMavenProject.xml.ft -------------------------------------------------------------------------------- /gmaven/src/main/resources/fileTemplates/j2ee/GMavenProject.xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/fileTemplates/j2ee/GMavenProject.xml.html -------------------------------------------------------------------------------- /gmaven/src/main/resources/images/executeMavenGoal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/images/executeMavenGoal.svg -------------------------------------------------------------------------------- /gmaven/src/main/resources/images/executeMavenGoal_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/images/executeMavenGoal_dark.svg -------------------------------------------------------------------------------- /gmaven/src/main/resources/images/mavenIgnored.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/images/mavenIgnored.svg -------------------------------------------------------------------------------- /gmaven/src/main/resources/images/mavenIgnored_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/images/mavenIgnored_dark.svg -------------------------------------------------------------------------------- /gmaven/src/main/resources/images/mavenLoadChanges.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/images/mavenLoadChanges.svg -------------------------------------------------------------------------------- /gmaven/src/main/resources/images/mavenLoadChanges_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/images/mavenLoadChanges_dark.svg -------------------------------------------------------------------------------- /gmaven/src/main/resources/images/mavenParentProjects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/images/mavenParentProjects.svg -------------------------------------------------------------------------------- /gmaven/src/main/resources/images/mavenParentProjects_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/images/mavenParentProjects_dark.svg -------------------------------------------------------------------------------- /gmaven/src/main/resources/images/mavenProject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/images/mavenProject.svg -------------------------------------------------------------------------------- /gmaven/src/main/resources/images/mavenProject_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/images/mavenProject_dark.svg -------------------------------------------------------------------------------- /gmaven/src/main/resources/images/repositoryLibraryLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/images/repositoryLibraryLogo.svg -------------------------------------------------------------------------------- /gmaven/src/main/resources/images/toolwindow/maven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/images/toolwindow/maven.svg -------------------------------------------------------------------------------- /gmaven/src/main/resources/images/toolwindow/maven@20x20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/images/toolwindow/maven@20x20.svg -------------------------------------------------------------------------------- /gmaven/src/main/resources/images/toolwindow/maven@20x20_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/images/toolwindow/maven@20x20_dark.svg -------------------------------------------------------------------------------- /gmaven/src/main/resources/images/toolwindow/maven_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/images/toolwindow/maven_dark.svg -------------------------------------------------------------------------------- /gmaven/src/main/resources/messages/GBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/messages/GBundle.properties -------------------------------------------------------------------------------- /gmaven/src/main/resources/schemas/maven-4.0.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/schemas/maven-4.0.0.xsd -------------------------------------------------------------------------------- /gmaven/src/main/resources/schemas/settings-1.2.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/main/resources/schemas/settings-1.2.0.xsd -------------------------------------------------------------------------------- /gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/MavenImportingTestCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/MavenImportingTestCase.kt -------------------------------------------------------------------------------- /gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/MavenTestCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/MavenTestCase.kt -------------------------------------------------------------------------------- /gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/AspectJMavenPluginTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/AspectJMavenPluginTest.kt -------------------------------------------------------------------------------- /gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/BuildHelperMavenPluginTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/BuildHelperMavenPluginTest.kt -------------------------------------------------------------------------------- /gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/FirstRunTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/FirstRunTest.kt -------------------------------------------------------------------------------- /gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/GroovyImporterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/GroovyImporterTest.kt -------------------------------------------------------------------------------- /gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/KotlinMavenPluginImportTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/KotlinMavenPluginImportTest.kt -------------------------------------------------------------------------------- /gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/MavenCompilerPluginTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/MavenCompilerPluginTest.kt -------------------------------------------------------------------------------- /gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/MavenModuleImportTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/MavenModuleImportTest.kt -------------------------------------------------------------------------------- /gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/MavenSeparateModuleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/MavenSeparateModuleTest.kt -------------------------------------------------------------------------------- /gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/ReadonlyImportTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/ReadonlyImportTest.kt -------------------------------------------------------------------------------- /gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/task/MavenDebugParamsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/task/MavenDebugParamsTest.kt -------------------------------------------------------------------------------- /gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/task/MavenTaskManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/project/task/MavenTaskManagerTest.kt -------------------------------------------------------------------------------- /gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/reflection/ReflectionCompatibilityTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gmaven/src/test/kotlin/ru/rzn/gmyasoedov/gmaven/reflection/ReflectionCompatibilityTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /maven-ext-event-handler/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/maven-ext-event-handler/build.gradle.kts -------------------------------------------------------------------------------- /maven-ext-event-handler/src/main/java/ru/rzn/gmyasoedov/event/spy/GMavenEventSpyConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/maven-ext-event-handler/src/main/java/ru/rzn/gmyasoedov/event/spy/GMavenEventSpyConstants.java -------------------------------------------------------------------------------- /maven-ext-event-handler/src/main/java/ru/rzn/gmyasoedov/event/spy/GMavenExecutionEventSpy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/maven-ext-event-handler/src/main/java/ru/rzn/gmyasoedov/event/spy/GMavenExecutionEventSpy.java -------------------------------------------------------------------------------- /maven-ext-event-handler/src/main/java/ru/rzn/gmyasoedov/event/spy/MavenErrorConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/maven-ext-event-handler/src/main/java/ru/rzn/gmyasoedov/event/spy/MavenErrorConverter.java -------------------------------------------------------------------------------- /maven-ext-event-handler/src/main/java/ru/rzn/gmyasoedov/event/spy/model/BuildErrors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/maven-ext-event-handler/src/main/java/ru/rzn/gmyasoedov/event/spy/model/BuildErrors.java -------------------------------------------------------------------------------- /maven-ext-event-handler/src/main/resources/META-INF/sisu/javax.inject.Named: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/maven-ext-event-handler/src/main/resources/META-INF/sisu/javax.inject.Named -------------------------------------------------------------------------------- /server-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/build.gradle.kts -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/BuildErrors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/BuildErrors.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenArtifact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenArtifact.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenArtifactNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenArtifactNode.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenArtifactState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenArtifactState.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenId.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenListResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenListResult.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenMapResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenMapResult.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenPlugin.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenProfile.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenProject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenProject.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenProjectContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenProjectContainer.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenRemoteRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenRemoteRepository.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenResource.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/MavenSettings.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/ObjectUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/ObjectUtils.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/PluginBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/PluginBody.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/PluginExecution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/PluginExecution.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/SimpleMavenId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/SimpleMavenId.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/tree/DependencyTreeNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/tree/DependencyTreeNode.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/tree/MavenProjectDependencyTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/maven/plugin/reader/model/tree/MavenProjectDependencyTree.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/serverapi/GMavenServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/serverapi/GMavenServer.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/serverapi/GServerUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/serverapi/GServerUtils.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/serverapi/model/ObjectUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/serverapi/model/ObjectUtils.java -------------------------------------------------------------------------------- /server-api/src/main/java/ru/rzn/gmyasoedov/serverapi/model/request/GetModelRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/server-api/src/main/java/ru/rzn/gmyasoedov/serverapi/model/request/GetModelRequest.java -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grisha9/easy-maven-plugin/HEAD/settings.gradle.kts --------------------------------------------------------------------------------